Skip to content

Instantly share code, notes, and snippets.

@cbmeeks
Created May 2, 2013 14:22
Show Gist options
  • Save cbmeeks/5502534 to your computer and use it in GitHub Desktop.
Save cbmeeks/5502534 to your computer and use it in GitHub Desktop.
Nuke Subversion
REM CAREFUL!!!!
REM MAKE SURE THIS IS IN THE FOLDER OF YOUR PROJECT AS IT RECUSIVELY NUKES ALL .SVN FOLDERS/FILES
for /d /r . %d in (.svn) do @if exist "%d" rd /s/q "%d"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment