显示标签为“SVN”的博文。显示所有博文
显示标签为“SVN”的博文。显示所有博文

2009年1月4日星期日

删除本地资源的SVN配置信息

cd $TargetDir && find . -name .svn -type d -print0 | xargs -0 rm -rf
Find directories named .svn in or below the current directory and delete them, processing filenames in such a way that file or directory names containing spaces or newlines are correctly handled.