git-workflow
Installation
SKILL.md
Git Usage Guidelines
Branch Management
- Main branch: Typically
main,master, or a custom branch (check project conventions) - Workflow: main branch → create feature branch → develop → PR back to main
- NEVER work directly on the main branch → ALWAYS create feature branches
Branch Naming
- Feature branches:
feat/descriptionorfeature/description - Bug fixes:
fix/description - Refactoring:
refactor/description