## Usage
```shell
$ gig -l # lists out all possible .gitignore
$ gig # will print to stdout specific .gitignore
$ gig --write # Similar to > .gitignore but is careful not to overwrite
$ gig --write-force # Force writes to .gitignore
```
### Example
```shell
$ gig -l | grep -i ^c | head -n 3
C++.gitignore
C.gitignore
CFWheels.gitignore
$ gig c++ --write
Writing c++ gitignore to .gitignore...
$ gig c >> .gitignore
$ gig rust --write-force
```
## Install
### Cargo
If you're using a recent version of Cargo, you can see the `cargo install` command:
```shell
$ cargo install gig-cli
```
### Build from source
After git cloning this repo, you can install as a cargo crate through
```shell
$ cargo install --path path/to/repo
```
## License
MIT
Maintained by [Milan](https://mdaverde.com)