Skip to content

Instantly share code, notes, and snippets.

@dnnta
Created June 18, 2012 09:33
Show Gist options
  • Save dnnta/2947645 to your computer and use it in GitHub Desktop.
Save dnnta/2947645 to your computer and use it in GitHub Desktop.
mac 删除svn文件
有时复制一个已经存放在svn的项目时,会把里面的svn文件也复制了过去。所以再次提交到svn时会出现 under version control.
所以用以下命令清除项目下的svn文件。
sudo find /Applications/MAMP/htdocs/jumpqsina/ -name ".svn" -exec rm -r {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment