-
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
/
Copy path.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/