https://github.com/uditalias/commitify
Easy git commit message with meaning
https://github.com/uditalias/commitify
cli-tool commit commit-message git git-workflow
Last synced: 4 months ago
JSON representation
Easy git commit message with meaning
- Host: GitHub
- URL: https://github.com/uditalias/commitify
- Owner: uditalias
- License: mit
- Created: 2018-01-24T11:33:15.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-10-24T11:53:58.000Z (over 6 years ago)
- Last Synced: 2025-01-08T17:34:15.904Z (6 months ago)
- Topics: cli-tool, commit, commit-message, git, git-workflow
- Language: JavaScript
- Homepage:
- Size: 10.7 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## **Commitify**
[](https://badge.fury.io/js/commitify)### Easy git commit message with meaning
##### Install
```sh
npm install -g commitify
```#### Usage
Inside any git repo:
```sh
$ 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](.commitifyrc)).
Create a `.commitifyrc` file in your project root in the format:```json
{
"types": [
"custom"
],
"scopes": [
"custom"
]
}
```MIT License