Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Remove properties recursively

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?

like image 789
Felipe Pessoto Avatar asked Jul 19 '10 13:07

Felipe Pessoto


1 Answers

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...)

like image 133
loentar Avatar answered Oct 05 '22 00:10

loentar