StandardCommitMessages

From Coder Merlin
Revision as of 15:57, 1 May 2020 by Chukwuemeka-tinashe (talk | contribs) (Created page with "== Format == <pre> <type>[optional scope]: <description> </pre> == Types == ;build: Changes to the build process or auxiliary tools and libraries such as documentation genera...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Within these castle walls be forged Mavens of Computer Science ...
— Merlin, The Coder

Format[edit]

<type>[optional scope]: <description>

Types[edit]

build
Changes to the build process or auxiliary tools and libraries such as documentation generation
docs
Documentation only changes
feat
Implementation of a new feature in code
fix
Correction of an error in code
perf
Improving performance
refactor
A code change that neither fixes a bug nor adds a feature with the primary goal of increasing code clarity, readability, etc.
style
Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)
test
Adding missing or correcting existing tests

References[edit]