```bash gign default:Rust global:Linux > .gitignore
gign --auto c++ windows > .gitignore
gign $(gign list javascript) default:Node > .gitignore
gign $(gign list | fzf) > .gitignore ```
see
gign list
to show all available templates
Using Cargo
cargo install gign
By default, templates are taken from this repository
To add custom template just create [name].gitignore
file inside gign where
directory.
Files inside folders will be prefixed with the parent folder name (except for the root templates).
For example, if you have custom.gitignore
file inside extras/
folder,
you can use it like this:
gign extras:custom
| Location | Name |
|--------------------------------|-----------------|
| custom.gitignore
| custom
|
| extras/custom.gitignore
| extras:custom
|
| extras/misc/custom.gitignore
| misc:custom
|
``` USAGE: gign [OPTIONS] [template]... [SUBCOMMAND]
ARGS: ... The templates to ignore
OPTIONS: -a, --auto Automatically resolve unknown templates -h, --help Print help information -V, --version Print version information
SUBCOMMANDS: help Print this message or the help of the given subcommand(s) list List all available templates update Update the default templates database where Print the templates path ```