Created
May 2, 2013 14:22
-
-
Save cbmeeks/5502534 to your computer and use it in GitHub Desktop.
Nuke Subversion
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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