gib
- A .gitignore
bootstrapper for projects using git
This is a small utility for those who need to generate .gitignore
files for different languages or frameworks. gib
uses .gitignore
templates, allowing to check and generate these files from them. The templates are collected directly from GitHub's own gitignore repository.
You can download the binaries for the available platforms at GitHub's releases page
bash
brew install davsanchez/gib/gib
Or brew tap davsanchez/gib
and then brew install gib
.
If you have installed Rust on your machine, you can just do:
bash
cargo install gib
You'll also need Rust installed for this one:
bash
git clone https://github.com/DavSanchez/gib.git --recurse-submodules
cd gib
cargo install
.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.
If you want to extend an existing file instead, use the -a|--append
flag. If you want to overwrite it, use -r|--replace
(append takes precedence over replace).
.gitignore
at other directorybash
gib [<template>...] [-o|--output] [<path>]
bash
gib [-l|--list]
stdout
onlybash
gib [<template>...] [-s|--show]
This flag takes precedence over --append
, --replace
and --output
flags.
.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
or choco
for Windows, etc.).gitignore
template loading with lazy_static
or phf
.