12/06/2008
Quick follow up to “unsubverioning” a directory. Here’s how to remove all the Visual Source Safe tracking files from a project. Run this at the root directory of the project.
DEL *.scc /S
That’s it!
19/11/2007
Spent a few minutes trying to figure out how to delete all those pesky .svn folders created by subversion. Hopefully this will save someone else the headache!
find ./ -name ".svn" | xargs rm -Rf
Update (5/21/08) For XP run the following in the root folder
for /f "tokens=* delims=" %%i in ('dir /s /b /a:d *svn') do ( rd /s /q "%%i" )