gib
- A .gitignore
bootstrapper for projects using git
TODO
.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 ```
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.