git-workflow
Installation
SKILL.md
Git Workflow Skill
Overview
This skill defines the git workflow patterns for the project, including branching strategies, commit conventions, and pull request guidelines.
Branching Strategy
Branch Types
| Branch | Purpose | Naming |
|---|---|---|
main |
Production-ready code | Protected |
develop |
Integration branch | Protected |
feature/* |
New features | feature/description |
bugfix/* |
Bug fixes | bugfix/issue-description |
hotfix/* |
Production fixes | hotfix/critical-fix |
release/* |
Release preparation | release/v1.2.0 |