a handy git commit formatter
Gitty is a CLI tool built with Go, helps you to format commit message according to Conventional Commits
// Message format
<type>[optional scope]: <description>
"feat": "Adding new features"
"fix": "Fixing the bugs"
"refactor": "Refactoring codes"
"docs": "Documentation"
"ci": "CI/CD improvements"
"perf": "Performance Enhancement"
"chore": "Tedious task done"
"test": "Adding/Editing tests"
"style": "Style changes (like css)"
If you are using MacOS, you can install it with brew.
brew tap chaewonkong/homebrew-gitty
brew install gitty
Or if you are familiar to Go, just run the following
go install github.com/chaewonkong/[email protected]
All you need to do is just run gitty
in your terminal after git add.
gitty