Delete .svn folders on your Mac
Sometimes you need to get rid of .svn hidden folders on your Mac. In my case it was about resyncing my local working copy with client subversion repository. Everything was broken at both ends.
A couple of terminal commands to get rid of unneeded svn tracks:
cd
/some/of/your/folders/
rm -rf `find . -type d -name .svn`
或者 find ./ -name .svn -print0 | xargs -0 rm -rf
It will delete any .svn folders under your current.
For lazy typists: don't forget that you can drag and drop folder from finder to terminal to populate path.

本文指导您如何在Mac上通过终端命令删除隐藏的svn文件夹,解决与Subversion仓库的同步问题。
760

被折叠的 条评论
为什么被折叠?



