https://github.com/streamich/igit
Interactive CLI for semantic Git commit messages.
https://github.com/streamich/igit
Last synced: 11 months ago
JSON representation
Interactive CLI for semantic Git commit messages.
- Host: GitHub
- URL: https://github.com/streamich/igit
- Owner: streamich
- Created: 2020-07-14T11:05:14.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-12-15T08:57:29.000Z (over 2 years ago)
- Last Synced: 2025-08-09T08:29:39.239Z (11 months ago)
- Language: Go
- Size: 82 KB
- Stars: 8
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# igit
Interactive CLI for semantic Git commit messages.
```
igit c
```

## Installation
Download from [releases page](https://github.com/streamich/igit/releases) or install using NPM.
```
npm i -g igit-cli
```
Or use without installation.
```
npx igit-cli
```
## Semantic commits
Read about semantic commit messages [here](https://gist.github.com/joshbuchea/6f47e86d2510bce28f8e7f42ae84c716).
## Semantic branches
```
igit b
```

## Development
Run tests.
```
make test
```
Run your code.
```
ARGS="cz" make run
```
Set commit body editor.
```
EDITOR=nano make run
```