Skip to content

chyroc/emomit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

41 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

emomit

codecov go report card test status Apache-2.0 license Go.Dev reference Go project version

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

Support inputting message information directly from the command line

emomit -- -a -m "<commit message>"