Skip to content

uditalias/commitify

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Commitify

npm version

Easy git commit message with meaning

Install

npm install -g commitify

Usage

Inside any git repo:

$ commitify

? Do you want to add changes before commit (`git add .`)? Yes
? Choose commit type: fix
? Choose commit scope: client
? Enter commit message: this is a bug fix
? Do you want to push your commit? Yes

That will push a new commit with the message:
fix(client): this is a bug fix

Options

You can extend the list of the commit types and scopes (example here).
Create a .commitifyrc file in your project root in the format:

{
    "types": [
        "custom"
    ],
    "scopes": [
        "custom"
    ]
}

MIT License

Releases

No releases published

Packages

No packages published