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?
Asked
Active
Viewed 1.4k times
1 Answers
51
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
- 5,111
- 1
- 24
- 25
-
I have TortoiseSvn, where is svn.exe? – Felipe Pessoto Jul 19 '10 at 13:41
-
Hmm. I have tortoisesvn and subversion installed. svn.exe is in subversion distro: http://subversion.tigris.org/servlets/ProjectDocumentList?folderID=91 – loentar Jul 19 '10 at 14:01
-
1TortoiseSVN 1.7 and newer comes with a svn.exe, but it is optional and one has to explicitly select it during installation. – MarkusSchaber Apr 23 '12 at 06:28
-
@MarkusSchaber or you can modify the TSVN instance through Programs and Features. – bahrep May 06 '13 at 08:44
-
Just adding: if you want to list the properties: svn proplist * --rescursive – heringer Apr 06 '18 at 00:38
-
important **note**: this needs to be run on a **local working directory** – hardmooth Jan 12 '21 at 05:47