Skip to content

Instantly share code, notes, and snippets.

@hamzahamidi
Created July 8, 2019 15:37
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save hamzahamidi/9d1ca4dbd02da86d29606b0458d15f34 to your computer and use it in GitHub Desktop.
Save hamzahamidi/9d1ca4dbd02da86d29606b0458d15f34 to your computer and use it in GitHub Desktop.
Git Branch Naming Conventions

<type>/<name>

<type>

fix      - Code changes linked to a known issue.
feat     - New feature.
hotfix   - Quick fixes to the codebase.
junk     - Experiments (will never be merged).
refactor - A code change that neither fixes a bug nor adds a feature
ci       - Changes to our CI configuration files and scripts (example scopes: Circle, BrowserStack, SauceLabs)
test     - Adding missing tests or correcting existing tests

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