Monday, January 5, 2009

How to globally ignore .pyc files

This has been driving me nuts. Sure, I run svn propset on directories and do so recursively, but I've hated having to remember to do it. Well, I just did it globally! How? I found my subversion config file!
emacs ~/.subversion/config
global-ignores = *.pyc
ctrl-x-s
ctrl-x-z
Yeah! No more annoying .pyc!

1 comment:

Zenos said...

Awesome, I keep forgetting how to do this every time I setup a new machine and have to look for the solution again. Thanks for posting it up!