Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 662 Bytes

commit_guidelines.md

File metadata and controls

30 lines (23 loc) · 662 Bytes

Semantic Commit Messages

Format: <type>(<scope>): <subject>

<scope> is optional

Example

feat: add hat wobble
^--^  ^------------^
|     |
|     +-> Summary in present tense.
|
+-------> Type: chore, docs, feat, fix, refactor, style, or test.

## Labels
  • chore: (changing internal logic)
  • feat: (new feature)
  • deletion: (deletion of a feature)
  • fix: (bug fix)
  • docs: (changes to the documentation)
  • style: (formatting, missing semi colons, etc)
  • refactor: (refactoring production code, eg. renaming a variable)
  • test: (adding tests, refactoring tests)

References: