You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs(VERSION_MANAGEMENT): add commit message guidelines and format
- Include quick guide for common commit types with examples
- Add section on commit message format (header, body, footer)
- Provide example of breaking change commit message
- Improve documentation for consistent commit practices
Example: test(utils): add unit tests for string helpers
91
+
92
+
- chore: Maintenance tasks
93
+
Example: chore(deps): update dependencies
94
+
95
+
For breaking changes, add BREAKING CHANGE: in the commit body or footer.
96
+
97
+
Example:
98
+
feat(api): change user authentication flow
99
+
100
+
BREAKING CHANGE: `loginUser` now returns a Promise instead of a callback
101
+
102
+
## Commit Message Format
103
+
104
+
Each commit message consists of a header, a body, and a footer. The header has a special format that includes a type, an optional scope, and a subject:
0 commit comments