ignore-from-github

Add common sets of ignored file types to your .gitignore easily


License
MIT
Install
pip install ignore-from-github==1.0

Documentation

ignore

ignore allows you to quickly add common sets of file types to your .gitignore file. It pulls from https://github.com/github/gitignore.

    $   ignore python
    $   cat .gitignore

    # Byte-compiled / optimized / DLL files
    __pycache__/
    *.py[cod]
    *$py.class

    # C extensions
    *.so
    .
    .
    .