Skip to content

Instantly share code, notes, and snippets.

@jhonywalkeer
Last active July 17, 2022 05:25
Show Gist options
  • Save jhonywalkeer/7593141273ac1359b060ff52d2c5aad2 to your computer and use it in GitHub Desktop.
Save jhonywalkeer/7593141273ac1359b060ff52d2c5aad2 to your computer and use it in GitHub Desktop.

See how a small change in the style of your commit message can make you a better programmer using the semantic commit convention in GIT:

build - Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)
ci - Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)
docs - Documentation only changes
feat - A new feature
fix - A bug fix
perf - A code change that improves performance
refactor - A code change that neither fixes a bug nor adds a feature
style - Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)
test - Adding missing tests or correcting existing tests

feat: add hat wobble
^---^ ^------------^
|     |
|     +-> Summary in present tense.
|
+-------> Type: chore, docs, feat, fix, refactor, style, or test.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment