Skip to content

Latest commit

 

History

History
55 lines (39 loc) · 809 Bytes

README.md

File metadata and controls

55 lines (39 loc) · 809 Bytes

Emojify

Emojify is a simple command line tool to conventional commit messages with emojis.

Requirements

  • Rust 1.64.0 or higher
  • Git

Installation

  1. Clone the repository
  2. Ejecuta cargo build --release
  3. Copy the binary to a directory in your PATH
$ cp target/release/emojify /usr/local/bin

Usage

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