今天打算在项目中添加友盟的SDK,add时就提示我的项目目录给lock了,需要clean up。
奇怪项目刚才还好好地,怎么就得clean up呢?不管,照做就是。在终端中输入:
cd <项目根目录路径> svn cleanup
结果出现:Can’t move ‘.svn/tmp/entries’ to ‘.svn/entries’: Operation not permitted
问题天天有,今天特别多呀...
于是,在网上找到一个老外教的方法,在终端中输入:
chflags -R nouchg ./
接着
svn cleanup
问题解决!
参考网址:http://blog.arc90.com/2008/07/02/fixing-the-cant-move-svntmpentries-to-svnentries-error/