tags:

views:

78

answers:

1

I'm using git and developing in Python (although this is obviously relevant to any other data managed with git). How do I tell git I don't want to see all the .pyc files from python in git status?

+7  A: 

Add to the file .gitignore the following line:

*.pyc

See gitignore(5).

J.F. Sebastian