-
Notifications
You must be signed in to change notification settings - Fork 15
/
.gitcommittemplate.txt
40 lines (40 loc) · 1.25 KB
/
.gitcommittemplate.txt
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
29
30
31
32
33
34
35
36
37
38
39
40
# ----------- This is 50 characters ----------> |
# Remember to format your commit message thusly...
#
# <type>([optional scope]): <subject>
# Try to keep the subject line <=50 characters
# <BLANK LINE>
# [optional body]
# <BLANK LINE>
# [optional footer]
#
# <type> is one of:
#
# * build: changes to the build process.
# * ci: changes to the ci/cd.
# * docs: documentation only change.
# * feat or feature: a new feature was added.
# * fix: a bug fix.
# * refactor: code change that doesn't add a feature or fix a bug.
# * style: change that affect code quality.
# * test: add or correct tests.
#
# Add an exclamation point (!) before the colon (:) if this is a breaking
# change. This should ONLY happen on fix types.
#
# <subject> should complete the following sentence:
#
# If applied, this commit will...
#
# [optional body] is a multi-line description of the changes. Use bulleted
# lists (-, *, etc.)to make this easier to read.
#
# [optional footer] is the place to list all the GitHub issues (if any) the
# commit closes. These should be listed in one of the following formats:
#
# Close: #<Issue ID>
# Closes: #<Issue ID>
# Fix: #<Issue ID>
# Fixes: #<Issue ID>
# Resolve: #<Issue ID>
# Resolves: #<Issue ID>