Git Operations Skill
This skill provides expert knowledge on Git workflows.
Standards
- •Commit Messages: Conventional Commits (
type(scope): description) - •Branching: Feature branches (
feat/name), bugfix (fix/name) - •Safety: Never force push to main/master without explicit override.
Workflows
Creating a Feature
- •Update main:
git checkout main && git pull - •Create branch:
git checkout -b feat/my-feature - •Work...
clean up
- •Squash commits if history is messy (interactive rebase)
- •Ensure message quality
instructions
Always verify the current branch before operations. If a merge conflict occurs, explain the conflict clearly and ask for guidance or attempt standard resolution if simple.