Tag Archives: SVN

Removing all .svn folders from a folder via Windows batch

I needed to delete all .svn subversion folders and the files within them and did not want to take the time to do it manually. This little command prompt script will recurse a folder and delete all folders names “.svn” and all the files within. for /d /r . %d in (.svn) do @if exist […]

Rate this:

Read more

Follow

Get every new post delivered to your Inbox.

Join 327 other followers