Far too often I find myself going to gitignore.io to quickly get
.gitignore
templates for my projects, so what would any reasonable programmer
do for menial and repetitive tasks? Automate it! Now you can quickly
and easily get and list all the templates available on gitignore.io.
Make sure you have Rust installed (I recommend installing via
rustup), then run cargo install git-ignore-generator
.
To list all the available templates:
sh
$ git ignore --list
[
"1c",
"1c-bitrix",
"a-frame",
"actionscript",
"ada",
[...],
"zukencr8000"
]
You can also search for templates (--list
can be both before and after the
queries):
sh
$ git ignore rust intellij --list
[
"intellij",
"intellij+all",
"intellij+iml",
"rust"
]
Then you can download the templates by omitting --list
:
```sh $ git ignore rust intellij+all
[...]
*/.rs.bk
```
Finally, if need be, you can always run git ignore -h
to see more options ---
spoiler alert, there are none.