emomit


Install
By Brew
brew install chyroc/tap/emomit
By Go
go install github.com/chyroc/emomit@latest
Usage
Simple to use
Just run emomit:
emomit
This is equivalent to running git commit -m "<generate message>".
emomit will start an interactive program to let you choose emoji(such as 🐛) and git commit type(such as fix).
Customized git commit command
If you want to customize the git commit command, you can add -- after the emomit command, and then add any commands supported by git commit.
Such as auto stage all modified files and commit with a message:
emomit -- -a
emomit -- -a -m "<commit message>"