|
| 1 | +# <type>(<scope>): <subject> |
| 2 | +# |
| 3 | +# <body> |
| 4 | +# |
| 5 | +# <footer> |
| 6 | +# |
| 7 | +# Type must be one of the following: |
| 8 | +# * feat: A new feature |
| 9 | +# * fix: A bug fix |
| 10 | +# * docs: Documentation only changes |
| 11 | +# * style: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc) |
| 12 | +# * refactor: A code change that neither fixes a bug nor adds a feature |
| 13 | +# * perf: A code change that improves performance |
| 14 | +# * test: Adding missing tests or correcting existing tests |
| 15 | +# * build: Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm) |
| 16 | +# * ci: Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs) |
| 17 | +# * chore: Other changes that don't modify src or test files |
| 18 | +# * revert: Reverts a previous commit |
| 19 | +# |
| 20 | +# Scope is optional and can be anything specifying the place of the commit change. |
| 21 | +# For example: auth, api, ui, db, etc. |
| 22 | +# |
| 23 | +# Subject must: |
| 24 | +# * use the imperative, present tense: "change" not "changed" nor "changes" |
| 25 | +# * don't capitalize the first letter |
| 26 | +# * no dot (.) at the end |
| 27 | +# |
| 28 | +# Body should include the motivation for the change and contrast this with previous behavior. |
| 29 | +# |
| 30 | +# Footer should contain any information about Breaking Changes and is also the place to |
| 31 | +# reference GitHub issues that this commit closes. |
| 32 | +# |
| 33 | +# Breaking Changes should start with the word BREAKING CHANGE: with a space or two newlines. |
| 34 | +# The rest of the commit message is then used for this. |
| 35 | +# |
| 36 | +# Example: |
| 37 | +# feat(auth): add OAuth2 integration |
| 38 | +# |
| 39 | +# Add support for OAuth2 authentication with Google and GitHub providers. |
| 40 | +# This allows users to sign in using their existing accounts. |
| 41 | +# |
| 42 | +# Closes #123 |
0 commit comments