VCS Branching
Format
<type>/<issue-number>-<short-description>
Types
feat/- New featurefix/- Bug fixrefactor/- Code refactoringdocs/- Documentationtest/- Testschore/- Maintenance
Workflow
- Identify: Find the related issue number and platform (GitHub/GitLab).
- Drafting:
- Use lowercase and kebab-case.
- 3-6 words for description.
- MITM Confirmation: ALWAYS present the drafted branch name to the USER for approval before creation.
- Execution:
git checkout main git pull origin main git checkout -b <branch-name>
Guidelines
- English Only: Branch descriptions must be in English.
- Sync: Always pull the latest changes from the base branch before creating a new one.