On Dec 14, 2005, at 8:01 AM, Ronald Jaramillo wrote:

Btw. does anybody knows how to tell svn to ignore '.pyc' and files on svn status?

I'm pretty sure svn status takes into account any svn propset declarations.

I usually have a file at the top of my code called .svnignore- <context>, like so:

    # .svnignore-python
    *.pyc
    *.pyo
    *.py.bak

Then apply that file to the appropriate directories:

    svn propset svn:ignore -F .svnignore-python .

Then you can also have kid-specific, or shell-script specific files and apply them to directories containing those kinds of files you want to ignore.

Hope this helps...

--Tracy

Reply via email to