-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitmessage
More file actions
35 lines (31 loc) · 1022 Bytes
/
.gitmessage
File metadata and controls
35 lines (31 loc) · 1022 Bytes
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
# <type>(<scope>): <short description>
# |<---- Use max 50 chars ---->|
# Detailed description, if necessary:
# |<---- Try to limit each line to 72 chars ---->|
#
# * List main changes
# * One per line
# * Start with a marker
# --- COMMIT TYPES ---
# feat ✨ (new feature)
# fix 🐛 (bug fix)
# docs 📚 (documentation)
# style 💎 (formatting, missing semi colons, etc)
# refactor ♻️ (refactoring)
# test 🧪 (adding or updating tests)
# chore 🔧 (maintenance tasks)
# perf ⚡ (performance improvements)
# ci 👷 (CI configuration)
# --- TIPS ---
# - Use the imperative mood: "add" not "added" or "adding"
# - First line is the title, must be clear and concise
# - Add "!" after type/scope to indicate breaking changes
# - Reference related issues in the footer: "Fixes #123"
# --- EXAMPLE ---
# feat(notes): add support for custom tags
#
# * Implement customizable tag system
# * Add interface for tag management
# * Integrate with existing search system
#
# Fixes #123