gig helps you create a new .gitignore
files for your git project.
npm install -g gig
npm update -g gig
generate a .gitignore
file for your git project
# If a `.gitignore` file aleady exists, append conditions to the `.gitignore` file.
gig gen java intellij sublimetext
# If you want to overrride a `.gitignore` file, add commands to options : --override (shortcut : -o)
gig gen -o java intellij sublimetext
pkg command is to create a custom template.
# If a 'mypakage' file aleady exists, append conditions to the 'mypakage' file.
gig pkg -name 'mypakage' java intellij sublimetext
# if you want to override a `mypakage` file, add commands to options : --override (shortcut : -o)
gig pkg -name 'mypakage' -o java intellij sublimetext
gig show mypakage
*.class
# Package Files #
*.jar
*.war
*.ear
intellij :
*.iml
*.ipr
*.iws
.idea/
sublimetext :
# SublimeText project files
*.sublime-workspace
gig show java intellij sublimetext
gig --help
The MIT License
Copyright (c) 2013 The gig Authors
See the LICENSE file for details.