views:

46

answers:

1

Tortoise SVN has a choice to apply a propertie to all subfolder/subfiles recursively. Now I need to remove this properties. How can I do this recursively?

+4  A: 

I did not find how to remove property recursively using GUI, but You can remove property using svn command line tool:

svn propdel PROPERTYNAME --recursive

where PROPERTYNAME is svn property(svn:ignore, svn:mime-type, etc...)

loentar
I have TortoiseSvn, where is svn.exe?
Fujiy
Hmm. I have tortoisesvn and subversion installed. svn.exe is in subversion distro:http://subversion.tigris.org/servlets/ProjectDocumentList?folderID=91
loentar