Skip to content

Instantly share code, notes, and snippets.

@faycal1
Forked from revett/git_branch_naming.md
Created December 26, 2018 09:17
Show Gist options
  • Select an option

  • Save faycal1/6d35c9fb59d6e5ae7f70569550b17e1b to your computer and use it in GitHub Desktop.

Select an option

Save faycal1/6d35c9fb59d6e5ae7f70569550b17e1b 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