Git Commit Message Generator
Construct precise, descriptive, and standardized conventional commit messages instantly.
feat(auth): add oauth2 login handler
Quick Git Command:
git commit -m "feat(auth): add oauth2 login handler"
Rule of thumb: Write your commit message in the imperative ("add", not "added" or "adds").
About Conventional Commits
1. Structure
Format follows type(scope): short description followed optionally by body and footer.
2. Automated Changelogs
Standardized prefixes allow automated tools to generate changelogs and determine semantic version bumps.
3. Clarity
Instantly communicates the nature of code modifications across distributed development teams.