https://github.com/oscgu/cig
Small & fast cli to help with writing conventional commits
https://github.com/oscgu/cig
c cli conventional-commits
Last synced: 3 months ago
JSON representation
Small & fast cli to help with writing conventional commits
- Host: GitHub
- URL: https://github.com/oscgu/cig
- Owner: oscgu
- Created: 2024-06-10T20:27:19.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-22T19:38:22.000Z (almost 2 years ago)
- Last Synced: 2024-07-22T23:28:07.968Z (almost 2 years ago)
- Topics: c, cli, conventional-commits
- Language: C
- Homepage:
- Size: 68.4 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# cig
Conventional commits cli, written in `C`

## Dependencies
- readline
- libgit2
### Arch install:
```bash
sudo pacman -S libgit2 readline
```
### Ubuntu install:
```bash
sudo apt-get install libgit2-dev libreadline-dev
```
Apply the ubuntu patch, because libgit2-dev appears to be an old version:
```bash
patch < ./ubuntu.patch
```
## Configure
Edit [config.def.h](./config.def.h)
Running `make` will copy the file to `config.h`
## Build
`make`
## Install
```bash
sudo make install
```