See how a minor change to your commit message style can make a difference.
Tip
Take a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs
See how a minor change to your commit message style can make a difference.
Tip
Take a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs
feat Commits, that adds or remove a new featurefix Commits, that fixes a bugrefactor Commits, that rewrite/restructure your code, however does not change any API behaviourperf Commits are special refactor commits, that improve performancestyle Commits, that do not affect the meaning (white-space, formatting, missing semi-colons, etc)test 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, ...