We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The commit message should be structured as follows:
<type>(<optional scope>): <subject> <optional body> <optional footer>
feat
fix
refactor
perf
style
tests
docs
build
Ops
chore
The text was updated successfully, but these errors were encountered:
dksifoua
No branches or pull requests
Setup a git commit message convention
The commit message should be structured as follows:
Types
feat
: Commits, that adds a new featurefix
: Commits, that fixes a bugrefactor
: Commits, that rewrite/restructure your code, however does not change any behaviourperf
: Commits are special specialrefactor
commits, that improve performancestyle
: Commits, that do not affect the meaning (white-space, formatting, missing semi-colons, etc)tests
: Commits, that add missing tests or correcting existing testsdocs
: Commits, that affect documentation onlybuild
: Commits, that affect build components like build tool, ci pipeline, dependencies, project version, ...Ops
: Commits, that affect operational components like infrastructure, deployment, backup, recovery, ...chore
: Miscellaneous commits e.g. modifying .gitignoreThe text was updated successfully, but these errors were encountered: