doc: update commit documentation (add new type)

This commit is contained in:
Xymorot 2019-07-26 22:19:28 +02:00
parent 869f96809a
commit 82cc4c78c3
1 changed files with 2 additions and 0 deletions

View File

@ -17,12 +17,14 @@
### Git Commits ### Git Commits
This project uses [Conventional Commits](https://www.conventionalcommits.or) with the following types: This project uses [Conventional Commits](https://www.conventionalcommits.or) with the following types:
- `feat`: features, if any part of your commit implements a new functionality, use this - `feat`: features, if any part of your commit implements a new functionality, use this
- `fix`: bugfixes - `fix`: bugfixes
- `refactor`: code refactoring - `refactor`: code refactoring
- `update`: updating dependencies and associated code changes - `update`: updating dependencies and associated code changes
- `doc`: documentation - `doc`: documentation
- `config`: changing configuration (linters, build process) - `config`: changing configuration (linters, build process)
- `reformat`: fixing code formatting
Always try to split up your changes into coherent commits, a single commit should do a single thing. If your commit needs to do more than one thing it should be labeled with the type coming first in this list. Always try to split up your changes into coherent commits, a single commit should do a single thing. If your commit needs to do more than one thing it should be labeled with the type coming first in this list.