-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitmessage.txt
More file actions
28 lines (25 loc) · 936 Bytes
/
Copy path.gitmessage.txt
File metadata and controls
28 lines (25 loc) · 936 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
# -------------------------------------------------------------------
# Conventional Commit Template
# -------------------------------------------------------------------
# Format: <type>(<scope>): <short summary>
#
# <type>: Required. One of:
# feat, fix, docs, style, refactor, perf, test, build, ci, chore, revert
#
# <scope>: Optional. A noun describing the section of the codebase
# (e.g., api, auth, ui, k8s, ci-pipeline)
#
# <short summary>: Required. Imperative, present tense. No period at end.
#
# Example:
# feat(auth): add JWT-based login
# fix(api): handle null pointer in user service
# -------------------------------------------------------------------
<type>(<scope>): <short summary>
# Body (optional):
# - Use when more detail is needed.
# - Explain what and why, not how.
# - Wrap lines at 72 characters.
# Footer(s) (optional):
# - BREAKING CHANGE: <description>
# - Closes #123, Relates-to #456