# Conventional Commit Messages  A commit message guideline based on the **[Conventional Commits Specification](https://www.conventionalcommits.org/en/v1.0.0/#specification)**.
## Commit Message Formats
### Default
A commit message guideline based on the **[Conventional Commits Specification](https://www.conventionalcommits.org/en/v1.0.0/#specification)**.
## Commit Message Formats
### Default
<type>(<optional scope>): <description> empty separator line <optional body> empty separator line <optional footer>### Merge Commit
Merge branch '<branch name>'Follows default git merge message ### Revert Commit
Revert "<reverted commit subject line>"Follows default git revert message ### Inital Commit ``` init ``` ### Types * API relevant changes * `feat` commits add or remove a new feature * `fix` commits fix a bug * `refactor` commits rewrite/restructure your code but does not change any API behaviour * `perf` commits are special `refactor` commits that are specific to performance optimisations * `style` commits do not affect the meaning of the existing code (whitespace, formatting, missing semi-colons, etc.) * `test` commits add testing code or correct existing tests * `docs` commits affect documentation only * `build` commits affect build components (build tools, ci pipeline, dependencies, project version, etc.) * `ops` commits affect operational components (infrastructure, deployment, backup, recovery, etc.) * `chore` commits are miscellaneous commits e.g. modifying `.gitignore` ### Scope (Optional) The `scope` provides additional contextual information about the commit, such as a one-word description of a section of the codebase (e.g., `fix(parser):`. * It is an **optional** part of the format * Allowed scopes depends on the specific project * Don't use issue identifiers as scopes * In most cases the scope should be a one-word noun ### Breaking Changes Indicator Breaking changes should be indicated by an `!` before the `:` in the subject line e.g. `feat(api)!: remove status endpoint` * Is an **optional** part of the format ### Description The `description` contains a concise description of the change. * Is a **mandatory** part of the format * Use the imperative, present tense: "change" not "changed" nor "changes" * Think of `This commit will...` or `This commit should...` * Don't capitalize the first letter * No dot (`.`) at the end ### Body The `body` should include the motivation for the change and contrast this with previous behavior. * Is an **optional** part of the format * Use the imperative, present tense: "change" not "changed" nor "changes" * This is the place to mention issue identifiers and their relations ### Footer The `footer` should contain any information about **Breaking Changes** and is also the place to **reference Issues** that this commit refers to. * Is an **optional** part of the format * **optionally** reference an issue by its id. * **Breaking Changes** should start with the word `BREAKING CHANGES:` followed by space or two newlines. The rest of the commit message is then used for this. ### Examples * ``` feat: add email notifications on new direct messages ``` * ``` feat(shopping cart): add the amazing button ``` * ``` feat!: remove ticket list endpoint refers to JIRA-1337 BREAKING CHANGES: ticket enpoints no longer supports list all entites. ``` * ``` fix(api): handle empty message in request body ``` * ``` fix(api): fix wrong calculation of request body checksum ``` * ``` fix: add missing parameter to service call The error occurred because of