Git Workflow Review
A review skill for git history quality and repository hygiene.
What it covers
- Commit messages — conventional commit format, imperative mood, linking to issues, meaningful descriptions
- Branch strategy — naming conventions, short-lived feature branches, rebase vs. merge policies
- Secret prevention — .gitignore coverage, pre-commit hooks for secret scanning, no credentials in history
- PR discipline — atomic PRs with single concerns, meaningful PR descriptions, draft PR usage
- History cleanliness — interactive rebase before merge, squash policy, avoiding merge commits in feature branches
When to use
Run this when establishing team git conventions, onboarding new contributors, or auditing repository history for secret leaks and compliance.