用于删除所有TortoiseSVN.svn文件(放入注册表)的Shell命令
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用于删除所有TortoiseSVN.svn文件(放入注册表)的Shell命令相关的知识,希望对你有一定的参考价值。
I changed the code on the web site slightly to get it to work with the registry editor.Once this new shell command is in place, right click on the directory of interest, and select "Delete SVN Folders" to strip all the .svn folders from the directory.
Create a new key: HKEY_LOCAL_MACHINESOFTWAREClassesFoldershellDeleteSVN Text of the default REG_SZ string should be: Delete SVN Folders Create a new key: HKEY_LOCAL_MACHINESOFTWAREClassesFoldershellDeleteSVNcommand Text of the default REG_SZ string should be: cmd.exe /C "TITLE Removing SVN Folders in %1 && FOR /r "%1" %%f IN (.svn) DO RD /s /q "%%f" "
以上是关于用于删除所有TortoiseSVN.svn文件(放入注册表)的Shell命令的主要内容,如果未能解决你的问题,请参考以下文章
使用VisualSVN Server搭建SVN服务器(测试通过)