Skip to content

Latest commit

 

History

History
58 lines (41 loc) · 1021 Bytes

README.md

File metadata and controls

58 lines (41 loc) · 1021 Bytes

gig

gig is a .gitignore generator. It's like gitignore.io, but on command line.

Dependencies:

Downloading and building

Assuming you have Go installed:

$ git clone https://github.com/esdrasbeleza/gig.git
$ make setup
$ go install

This will install gig into your $GOPATH/go/bin.

Using

From command line

$ gig golang code
# Binaries for programs and plugins
*.exe
*.exe~
*.dll
*.so
*.dylib

# Test binary, built with `go test -c`
*.test

# Output of the go coverage tool, specifically when used with LiteIDE
*.out

/vendor/
/Godeps/

.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json

# Ignore all local history of files
.history

Interactive mode

Run gig without args:

Screenshot