本文共 263 字,大约阅读时间需要 1 分钟。
很多使用svn的程序员都遇到过.svn文件夹的干扰。为此可以使用如下代码清除:
1 2 3 4 5 6 7 8 9 10 | for /D /R %%i in (*.*) do ( cd %%i if exist .svn ( rd .svn /s /q ) if exist CVS ( rd CVS /s /q ) cd .. ) |
将上面的代码copy到txt文件,再见txt文件改为bat文件即可。
本文转自 梦朝思夕 51CTO博客,原文链接:http://blog.51cto.com/qiangmzsx/1320186
转载地址:http://dhjtx.baihongyu.com/