forked from LearningLocker/learninglocker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgit-commit-template.txt
More file actions
34 lines (30 loc) · 1.59 KB
/
git-commit-template.txt
File metadata and controls
34 lines (30 loc) · 1.59 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
# Please use this template for commit messages
#
# type(scope): Summary message goes here.
#
# Long message goes here.
#
# EXAMPLE 1 - Fix
# ------------------------------------------
# fix(visualisations): removed deprecated method oldMethod
#
# EXAMPLE 2 - Refactor with 2 breaking changes
# ------------------------------------------
# refactor: Changes imports
#
# BREAKING CHANGE: Change imports of Button from '/buttons/Button' to '/Button'.
# BREAKING CHANGE: Change imports of Text from '/text/Text' to '/Text'.
# TYPE DESCRIPTION RELEASE
# ---------------------|---------------------------------------|-----------
# feat Features Bumps minor
# fix Bug fixes (updating prod dependencies) Bumps patch
# perf Performance improvements Bumps patch
# docs Documentation changes No release
# design Changes to design folder contents No release
# style Styling changes No release
# refactor Code refactoring No release
# test Test changes No release
# build Build Changes No release
# ci Continuous integration changes No release
# chore Chores (updating dev dependencies) No release
# To add this as your default commit message: git config --global commit.template </your LL folder path> .git-commit-template.txt