Skip to content

Instantly share code, notes, and snippets.

@yatemmma
Created June 23, 2013 06:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yatemmma/5843978 to your computer and use it in GitHub Desktop.
Save yatemmma/5843978 to your computer and use it in GitHub Desktop.
rem recursively remove .svn folders within current folder.
for /r %%d in (.svn) do rmdir /s /q "%%d"
pause
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment