Windows Registry Editor Version 1.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 Removing SVN Folders in %1 && COLOR 9A && FOR /r \"%1\" %%f IN (.svn) DO RD /s /q \"%%f\" n\""
- Save the file as deletesvn.reg
- Double click on deletesvn.reg file
It prompts alert box saying" Are you sure you want to add the information deletesvn.reg to the registry?
- click on yes
- it shows alert saying "Information in deletesvn.reg has been successfullly entered into the registry"
- right click on any folder you can see "Delete SVN folders" menu item.
- when you click on "Delete SVN folders" it deletes all instances of .svn in that folder and subfolders.
- Open text editor - copy
Thu, 06/17/2010 - 19:49 — Anonymous- Open text editor
- copy and paste below text
Windows Registry Editor Version 1.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 Removing SVN Folders in %1 && COLOR 9A && FOR /r \"%1\" %%f IN (.svn) DO RD /s /q \"%%f\" n\""
- Save the file as deletesvn.reg
- Double click on deletesvn.reg file
It prompts alert box saying" Are you sure you want to add the information deletesvn.reg to the registry?
- click on yes
- it shows alert saying "Information in deletesvn.reg has been successfullly entered into the registry"
- right click on any folder you can see "Delete SVN folders" menu item.
- when you click on "Delete SVN folders" it deletes all instances of .svn in that folder and subfolders.
Linux find . -name ".svn"
Mon, 06/21/2010 - 13:46 — adminLinux
find . -name ".svn" -type d -exec rm -rf {}