美文网首页
svn 更新后出现Previous operation has

svn 更新后出现Previous operation has

作者: xstones | 来源:发表于2019-03-01 17:54 被阅读0次

    svn update之后由于网络不稳定或者一些原因导致更新被中断,就会出现错误提示Previous operation has not finished; run 'cleanup' if it was interrupted,意思是让我们cleanup工程来解决,解决方法:

    1. cd到工程文件目录,终端运行svn cleanup

    2. 如果未解决,不要慌,之前中断的操作都会被保存在.svn文件夹下的wc.db中,这是个隐藏文件夹;

          下载SQLite,把sqlite3放到项目的根目录,终端运行:

            sqlite3 .svn/wc.db "select * from work_queue"       

            sqlite3 .svn/wc.db "delete from work_queue" 

    再切换本地应用看一下,是不是本地目录好了呢。

    相关文章

      网友评论

          本文标题:svn 更新后出现Previous operation has

          本文链接:https://www.haomeiwen.com/subject/wyhjuqtx.html