gib
- A .gitignore
bootstrapper for projects using git
You can download the binaries for the available platforms at GitHub's releases page
Additionally, if you have installed Rust on your machine, you can just do:
bash
cargo install gib
.gitignore
at current directory (if it doesn't exist)bash
$ gib [<template>...]
If a .gitignore
file already exists at that location, gib
will do nothing.
[Coming soon:] If you want to extend an existing file instead, use the -a|--append
flag. If you want to overwrite it, use -r|--replace
.
.gitignore
at other directorybash
$ gib [<template>...] [-o|--output] [<path>]
bash
$ gib [-l|--list]
stdout
onlybash
$ gib [<template>...] [-s|--show]
.gitignore
file for Go and Rustbash
$ gib go rust
.gitignore
```
*.exe *.exe~ *.dll *.so *.dylib
go test -c
*.test
*.out
/target/
Cargo.lock
*/.rs.bk ```
brew
for macOS, scoop
of choco
for Windows, etc.)append
and replace
flags for working with existing .gitignore
files..gitignore
template loading with lazy_static
or phf
?build.rs
assumes the gitignore
submodule is present and correctly loaded. It should test that before anything else.