git-workflow
Installation
SKILL.md
Git Workflow
This is a unified git workflow skill that combines commit rules, operations rules, file deletion rules, and branch-split workflows into a single reference. It MUST ALWAYS be applied when performing any git operations.
Decision Flow
When performing git operations, determine which reference applies:
"I need to create a commit"
Follow references/commit-rules.md:
- Analyze changes with
git status,git diff,git diff --staged - Detect commit message language from
git log --oneline -10 - Group related changes into granular commits
- Use Conventional Commits format:
type(scope): description - GPG signing is required (see below)
"I need to stage, unstage, undo, or stash"
Related skills