Skip to content

Latest commit

 

History

History
executable file
·
17 lines (13 loc) · 446 Bytes

branch-naming.md

File metadata and controls

executable file
·
17 lines (13 loc) · 446 Bytes

Git Naming Convention > Branch Naming

Must:

  • Include a short descriptive summary in imperative present tense
  • Use Hyphens for separating words

May:

  • Include the work type: feature, refactor, bugfix, hotfix, etc.
  • Include corresponding ticket/story id (e.g. from Jira, GitHub issue, etc.)

Suggested Format:
{work type e.g.}/{2-3 word summary}/{story or ticket id}_

Example:

git checkout -b feature/oauth-migration/ATL-244