Git Ignore

The purpose of this document is to explain how to ignore git stuff.

C.f., here.

    • vim .git/info/exclude

        • # Make sure to add |

    • git update-index --assume-unchanged "source/confirm|2670.eml.html"

        • # Etc

Here is a small gitignore that is nice:

*~ .DS_Store *.ignore.* *.ignore *.pyc *.log log.html output.xml report.html nohup.out

[Edit]