DOS Delete all .svn Files
REM ## this is one I dont want to forget...how to obliterate all traces of .svn files for a project I'm trying to move. Just throw into any directory where you have .svn files, including ones in subdirectories - careful though, as once you run this they are gone for good. By Stacey Tipton Reiman, www.akwebgenius.com/blog ## FOR /F "tokens=" %%G IN DIR /B /AD /S .svn DO RMDIR /S /Q "%%G"
