-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitmessage
More file actions
41 lines (38 loc) · 1.17 KB
/
.gitmessage
File metadata and controls
41 lines (38 loc) · 1.17 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
# Conventional Commit Message Template
#
# Format: type(scope): description
#
# Types:
# feat - New feature
# fix - Bug fix
# docs - Documentation changes
# style - Code style changes (formatting, etc.)
# refactor - Code refactoring
# test - Adding or updating tests
# chore - Maintenance tasks
# perf - Performance improvements
# ci - CI/CD changes
# build - Build system changes
# revert - Revert previous commit
#
# Examples:
# feat(auth): add OAuth2 authentication
# fix(logging): resolve log rotation issues
# docs(readme): update installation instructions
# refactor(api): simplify user endpoint logic
# chore(deps): update dependencies to latest versions
#
# Body (optional):
# - Explain what and why, not how
# - Use imperative mood ("add" not "added")
# - Reference issues if applicable
#
# Footer (optional):
# - Breaking changes: "BREAKING CHANGE: description"
# - Issue references: "Closes #123", "Fixes #456"
type(scope): description
# Body (optional)
# Explain what and why, not how
# Footer (optional)
# Breaking changes: BREAKING CHANGE: description
# Issue references: Closes #123, Fixes #456