Skip to content

Commit ea6f08d

Browse files
authored
Update README.md
1 parent 6aba9af commit ea6f08d

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

README.md

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,16 @@ Example `git-conventional-commits.yaml`
2929
---
3030
convention:
3131
commitTypes:
32-
- feat
33-
- fix
34-
- perf
35-
- refactor
36-
- style
37-
- test
38-
- build
39-
- ops
32+
- feat # Commits, that add or remove a new feature to the API or UI
33+
- fix # Commits, that fix a API or UI bug of a preceded feat commit
34+
- refactor # Commits, that rewrite/restructure your code, however do not change any API or UI behaviour
35+
- perf # Commits are special `refactor` commits, that improve performance
36+
- style # Commits, that do not affect the meaning (white-space, formatting, missing semi-colons, etc)
37+
- test # Commits, that add missing tests or correcting existing tests
38+
- build # Commits, that affect build components like build tool, ci pipeline, dependencies, project version, ...
39+
- ops # Commits, that affect operational components like infrastructure, deployment, backup, recovery, ...
40+
- docs # Commits, that affect documentation only
41+
- chore # Miscellaneous commits e.g. modifying `.gitignore`
4042
- docs
4143
- merge
4244
commitScopes: []

0 commit comments

Comments
 (0)