Gitignore generator written in Python.
- Easy to install
- Supports tons of gitignore files by default
- Save gitignores for later use
- Works anywhere you can use pip or easy_install
pip install pignore
OR
easy_install pignore
Run pignore update
after installation to get default gitignores
g | generate generate a gitignore file
u | update update gitignore stored files
s | save save current directory gitignore file
l | list list all available gitignores
$ pignore update
Updates gitignores from Github's gitignore repo
$ pignore generate java
Generates a Java .gitignore
file in current directory
$ pignore generate java python swift
Generates appends Java, Python, and Swift .gitignore
files to create a single .gitignore
file in current directory
If there is already a .gitignore
file in the current directory you will have the option to overwrite it or append to it
$ pignore save my_gitignore
Save .gitignore
in current directory to provided file name. You can generate the .gitignore
later using:
$ pignore generate my_gitignore
pignore list
Lists gitignores provided from update and all saved gitignores
Feel free to request features and enhancements in the issue tracker
Pignore uses the MIT License