30

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?

Felipe Pessoto
  • 6,855
  • 10
  • 42
  • 73

1 Answers1

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