Windows Shell Command to Delete .SVN Files


/ Published in: Windows Registry
Save to your folder(s)

Very useful for when you don't have Cygwin or are not running on a linux box...


Copy this code and paste it in your HTML
  1. Windows Registry Editor Version 5.00
  2.  
  3. [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Folder\shell\DeleteSVN]
  4. @="Delete SVN Folders"
  5.  
  6. [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Folder\shell\DeleteSVN\command]
  7. @="cmd.exe /c \"TITLE Removing SVN Folders in %1 && COLOR 9A && FOR /r \"%1\" %%f IN (.svn) DO RD /s /q \"%%f\" \""

URL: http://weblogs.asp.net/jgalloway/archive/2007/02/24/shell-command-remove-svn-folders.aspx

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.