On Thursday 23 March 2006 09:23, tonemcd wrote: > Oooh, now that's neat. My own tinkering with svn to ignore .pyc files > hasn't worked out so well... > > % svn proplist > Properties on '.': > svn:ignore > % svn st > M magic/site1/modeltest/models.pyc > > hmmm... >
I just make sure I don't add the pyc files to the repository (or is that what you are trying to automate?). It's not so hard doing it manually as adding files happens infrequently compared to committing changes to existing files. I'm assuming you don't want to see tons of lines of '? /path/to/some.pyc' when doing and 'svn status'. My 'svn status' alias filters out files with the pyc extension so that I don't have to look those lines: alias svnstatus='svn status | grep -v .pyc | grep -v .sql' That way pyc files aren't in the repository and I don't have status output cluttered with lines I don't care about. Hope that helps, Eric. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users -~----------~----~----~----~------~----~------~--~---