When doing:
>git status
It shows a big list of .pyc files under \"untracked files\". I don\'t want it to show these, as it adds noise.<
git config --global core.excludesfile "c:\program files\whatever\global_ignore.txt"
Then, add
*.foo
to that file.