See how a minor change to your commit message style can make you a better programmer.
Format: <type>: <subject>
feat: add hat wobble
^--^ ^------------^
| |
| +-> Summary in present tense.
|
+-------> Type: feat, fix, docs, style, refactor, chore, or wip.
More Examples:
feat: (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)style: (changes to the user interface or user experiance of a feature)updates: (other updates to a function or component that are neither a new feature or a bug fix)refactor: (refactoring production code, eg. renaming a variable)chore: (updating build tasks, content, etc; no production code change)wip: (work in progress, changes are being committed to preview or otherwise store)
References: