Skip to content

Instantly share code, notes, and snippets.

@emurmotol
Forked from revett/git_branch_naming.md
Created March 4, 2018 08:04
Show Gist options
  • Select an option

  • Save emurmotol/c1f1b8a2b5b444a6dc27b675e9310a1f to your computer and use it in GitHub Desktop.

Select an option

Save emurmotol/c1f1b8a2b5b444a6dc27b675e9310a1f to your computer and use it in GitHub Desktop.
Git Branch Naming Conventions

<type>/<name>

<type>

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

<name>

Always use dashes to seperate words, and keep it short.

Examples

feat/renderer-cookies
hotfix/dockerfile-base-image
bug/login-ie
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment