views:

492

answers:

2

Hi,

Recently I made a bunch of changes to my local svn config file. Mainly I corrected svn:mime-type properties of about 15 different file types. Now I need reset all previously checked in files according to this new configuration. SVN seems to trigger auto-prop only for ADDs and IMPORTs. So how do I do this without going individually and specifying new mime types?

Thanks!

  • dt
+4  A: 

There is no way to get svn to do this out of the box. The svn_apply_autoprops.py script should help though.

clawrence
A: 

Thanks clawrence! It worked!

For others FYI, I traced up the source of this script and I found more client scripts: http://subversion.tigris.org/tools_contrib.html

dt