Posted on 9. June 2009 22:54 by B-Virtual
So your using SVN as we are? And you need to remove all the SVN files and folders to relocate or just detach your project? Then this trick will save you some time.
It adds a 'Delete SVN Folders' entry to your context menu in Windows Explorer.
How does it work? Create a new file with a .reg extension and add the following lines to the file.
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Folder\shell\DeleteSVN]
@="Delete SVN Folders"
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Folder\shell\DeleteSVN\command]
@="cmd.exe /c \"TITLE Deleting SVN Folders in %1 && COLOR 9A && FOR /r \"%1\" %%f IN (.svn) DO RD /s /q \"%%f\" \""