Emojify is a simple command line tool to conventional commit messages with emojis.
- Rust 1.64.0 or higher
- Git
- Clone the repository
- Ejecuta cargo build --release
- Copy the binary to a directory in your PATH
$ cp target/release/emojify /usr/local/bin
To use emojify, you must be in a git repository. Then, you can run the command:
$ emojify
Select an option for commit
> ✨ feat
🎉 new
🐛 fix
📗 docs
🔧 chore
🚀 perf
🚧 wip
🔥 remove
💄style
🔒 security
Enter the scope of the commit:
> scope
Enter the commit message:
> commit message
The commit will be:
> ✨ feat(scope): commit message
Do you want to continue? (y/n)
> y
Do you want to push? (y/n)
> y
Pushed to main