美文网首页
SVN cleanup Previous operation h

SVN cleanup Previous operation h

作者: 陶石子 | 来源:发表于2018-02-23 18:50 被阅读0次

使用SVN时,提交更新都报Previous operation has not finished; run ‘cleanup' if it was interrupted 错误,cleanup也没有用(/ □ \)。最后百度了一下终于找到解决方法了。。。。

原文地址 http://blog.csdn.net/suzhouxueyuan/article/details/44201967

打开项目根目录,cmd.

1. 输入:sqlite3 .svn/wc.db "select * from work_queue" 回车,就能查看工作队列阻塞的原因了。

2. 输入:sqlite3 .svn/wc.db "delete from work_queue" 回车, 清空工作队列。

3. 输入:sqlite3 .svn/wc.db "select * from work_queue" 回车

最后,cleanup一下就好啦!

相关文章

网友评论

      本文标题:SVN cleanup Previous operation h

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