-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.gitmessage
More file actions
45 lines (45 loc) · 1.62 KB
/
.gitmessage
File metadata and controls
45 lines (45 loc) · 1.62 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# <type>[optional scope]: <description>
#
# [optional body]
#
# [optional footer(s)]
#
# --- COMMIT END ---
# Type can be:
# feat (new feature)
# fix (bug fix)
# docs (changes to documentation)
# style (formatting, missing semi colons, etc; no code change)
# refactor (refactoring production code)
# test (adding missing tests, refactoring tests; no production code change)
# chore (updating grunt tasks etc; no production code change)
# perf (performance improvements)
# ci (changes to CI configuration)
# build (changes to build system)
# revert (reverts a previous commit)
#
# Scope is optional and can be anything specifying place of the commit change.
# For example: feat(parser): add ability to parse arrays
#
# Description should be imperative, start with lowercase and not end with a period
# No more than 50 characters
#
# Body should explain what and why vs. how
# Can be multiple paragraphs, each separated by a blank line
# Wrap at 72 characters
#
# Footer should contain any information about Breaking Changes
# and is also the place to reference GitHub issues that this commit closes
#
# Breaking Changes should start with the word BREAKING CHANGE: with a space or two newlines
# The rest of the commit message is then used for this.
#
# Examples:
# feat: add hat wobble
# fix(scope): prevent racing of requests
# feat!: send an email to the customer when a product is shipped
# feat(api)!: send an email to the customer when a product is shipped
# chore!: drop support for Node 6
# docs: correct spelling of CHANGELOG
# feat(lang): add polish language
# fix: correct minor typos in code