git/tips/exclude.txt · Last modified: 2010/01/29 06:43 by Unclefragger

git:tips:exclude

in the File .git/info/exclude you can define files which should not be tracked by git (and not proposed to be added on git status). You can use * as a wildcard.

For ptyhon projects it wouldn't be a bad idea to exclude *.pyc and if you are using vim *.swp is always a good idea.