-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.commit_template
More file actions
57 lines (53 loc) Β· 2.12 KB
/
.commit_template
File metadata and controls
57 lines (53 loc) Β· 2.12 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
46
47
48
49
50
51
52
53
54
55
56
57
# ==== Emojis ====
# π :tada: Initial commit.
# β¨ :sparkles: New features.
# π§ :wrench: Changing configuration files.
# π :lipstick: Updating the UI and style files.
# β :pencil2: Fixing typos.
# π :memo: Writing docs.
# π₯ :fire: Removing code or files.
# π :bug: Fixing a bug.
# β» :recycle: Refactoring code.
# π¨ :rotating_light: Removing linter warnings.
# π§ :construction: Work in progress.
# π© :hankey: Writing bad code that needs to be improved.
# π :ambulance: Critical hotfix.
# β :heavy_plus_sign: Adding a dependency.
# β :heavy_minus_sign: Removing a dependency.
# π :loud_sound: Adding logs.
# π :mute: Removing logs.
# β
:white_check_mark: Adding tests.
# π :lock: Fixing security issues.
# π :globe_with_meridians: Internationalization and localization.
# β¬οΈ :arrow_up: Upgrading dependencies.
# β¬οΈ :arrow_down: Downgrading dependencies.
# βͺ :rewind: Reverting changes.
# π :twisted_rightwards_arrows: Merging branches.
# π‘ :bulb: Documenting source code.
# π :green_heart: Fixing CI Build.
# π· :construction_worker: Adding CI build system.
# π³ :whale: Work about Docker.
# π :truck: Moving or renaming files.
# π :see_no_evil: Adding or updating a .gitignore file
# π½ :alien: Updating code due to external API changes.
# π :rocket: Deploying stuff.
# π¨ :art: Improving structure / format of the code.
# π± :bento: Adding or updating assets.
# π· :label: Adding or updating types (Flow, TypesScript)
# π :card_file_box: Performing database related changes.
# π :mag: Improving SEO
# π¦ :package: Updating compiled files or packages.
# ==== Format ====
# :emoji: Subject
#
# Commit body...
# ==== The Seven Rules ====
# 1. Separate subject from body with a blank line
# 2. Limit the subject line to 50 characters
# 3. Capitalize the subject line
# 4. Do not end the subject line with a period
# 5. Use the imperative mood in the subject line
# 6. Wrap the body at 72 characters
# 7. Use the body to explain what and why vs. how
#
# How to Write a Git Commit Message http://chris.beams.io/posts/git-commit/