Skip to content

Instantly share code, notes, and snippets.

@alexanderattar
Forked from revett/git_branch_naming.md
Created June 20, 2017 18:38
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alexanderattar/7da7d1684ead8a81201ed2c7b50c9b82 to your computer and use it in GitHub Desktop.
Save alexanderattar/7da7d1684ead8a81201ed2c7b50c9b82 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
@anegg0
Copy link

anegg0 commented Jun 20, 2017

Noted, thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment