Skip to content

Instantly share code, notes, and snippets.

@indie-rok
Forked from revett/git_branch_naming.md
Last active July 12, 2018 16:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save indie-rok/401333a5159f0234eee87b2cb5e9a2b0 to your computer and use it in GitHub Desktop.
Save indie-rok/401333a5159f0234eee87b2cb5e9a2b0 to your computer and use it in GitHub Desktop.
Git Branch Naming Conventions

<type>/<jira-ticket-id>

--

<type>

Should go in lowercase

bug    - Code changes linked to a known issue.
feature   - New feature.
hotfix - Quick fixes to the codebase.
junk   - Experiments (will never be merged).

<jira-ticket-id>

Always use dashes and lowercase to seperate words and numbers.

Examples

feature/or-197
hotfix/or-203
bug/or-402
junk/or-301
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment