-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdot_gitmessage
More file actions
28 lines (27 loc) · 1.81 KB
/
Copy pathdot_gitmessage
File metadata and controls
28 lines (27 loc) · 1.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# +---------------------------- Sample commit message ----------------------------+
# | |
# | topic(optional_scope): a brief summary of the change(s) |
# | |
# | Longer explanation of commit goes on the 3rd line. If the commit is changing |
# | something in a non-backwards-compatible way, then `BREAKING CHANGE: ...` must |
# | be present. |
# | |
# | Any links for further context around the commit should go here: |
# | |
# | * https://github.com/angular/angular.js/blob/master/DEVELOPERS.md#commits |
# | * https://www.freshconsulting.com/atomic-commits/ |
# | |
# +-------------------------------------------------------------------------------+
#
# Available topics:
# build: Changes to the build process or code generation
# chore: Changes to auxiliary tools and libraries such as dependencies
# ci: Changes to the continuous integration or delivery process
# docs: Documentation only changes
# feat: A new feature ie. a change that adds functionality that wasn't previously present
# fix: A bug fix
# perf: A code change that improves performance
# refactor: A code change that neither fixes a bug nor adds a feature
# revert: Reverts a previous commit
# style: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)
# test: Adding missing or correcting existing tests