[Python-checkins] [Python-Dev] commit of r41352 - in python/trunk: . Lib Lib/distutils Lib/distutils/command Lib/encodings

"Martin v. Löwis" martin at v.loewis.de
Sun Oct 30 00:53:53 CEST 2005


Fred L. Drake, Jr. wrote:
> Shouldn't we simply remove the .cvsignore files?  Subversion doesn't use them, 
> so they'll just end up getting out of sync with the svn:ignore properties.

That might be reasonable. I just noticed that it is convenient to do

svn propset svn:ignore -F .cvsignore .

Without a file, I wouldn't know how to edit the property, so I would
probably do

svn propget svn:ignore . > ignores
vim ignores
svn propset svn:ignore -F ignores .
rm ignores

Regards,
Martin


More information about the Python-checkins mailing list