Skip to content

Instantly share code, notes, and snippets.

@seunggabi
Last active April 25, 2024 08:44
Show Gist options
  • Star 71 You must be signed in to star a gist
  • Fork 6 You must be signed in to fork a gist
  • Save seunggabi/87f8c722d35cd07deb3f649d45a31082 to your computer and use it in GitHub Desktop.
Save seunggabi/87f8c722d35cd07deb3f649d45a31082 to your computer and use it in GitHub Desktop.
Semantic Branch Names

Semantic Branch Names

See how a minor change to your branch name style can make you a better programmer.

Format: <type>/#<issueNumber>-<alias>

Example

feature/#1-init
^------^   ^---^
|          |
|          +---> issue's keyword
|
+-------> Type: or feat, chore, docs, fix, refactor, style, or test.

More Examples:

  • feat or feature: (new feature for the user, not a new feature for build script)
  • fix: (bug fix for the user, not a fix to a build script)
  • docs: (changes to the documentation)
  • style: (formatting, missing semi colons, etc; no production code change)
  • refactor: (refactoring production code, eg. renaming a variable)
  • test: (adding missing tests, refactoring tests; no production code change)
  • chore: (updating grunt tasks etc; no production code change)

References:

@gabrielpaiva-bycoders
Copy link

Hello!

If I'm creating a POC or studying something before start making a feature, what type this branch should be?

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