7 lines
407 B
Markdown
7 lines
407 B
Markdown
# Git Branch Rules
|
|
|
|
- **Format:** `<type>/<ticket-id>-<short-description>` (e.g., `feature/PROJ-101-add-login`)
|
|
- **Types:** `feature` (new feature), `bugfix` (dev fix), `hotfix` (prod fix), `chore` (maintenance), `docs`, `refactor`.
|
|
- **Naming:** 3-6 lowercase words, separated by hyphens `-`. No special chars.
|
|
- **Workflow:** Branch from `develop` (or `main` for hotfix) -> PR -> Merge -> Delete branch.
|