码迷,mamicode.com
首页 > 其他好文 > 详细

【SVN】总结:svn“Previous operation has not finished; run 'cleanup' if it was interrupted“

时间:2017-09-02 09:36:38      阅读:276      评论:0      收藏:0      [点我收藏+]

标签:rup   finish   分享   图标   inter   命令   from   qfile   nis   

svn执行clean up命令时报错“Previous operation has not finished; run ‘cleanup‘ if it was interrupted”。无论你到那个父层次的目录执行“clean up “,都是报一样的错。执行cleanup时候,提示要cleanup。

技术分享

svn的operation是存放在“work queue’“里的。而“work queue’是在内嵌数据库wc.db的work_queue表中的。看看work_queue表中放了些什么,再做处理。

 技术分享

清空svn的队列

1)安装sqlite3

2)找到你项目的.svn文件,查看是否存在wc.db

3)执行sqlite3 .svn/wc.db "select * from work_queue"

4)看到很多记录,下一步执行delete from work_queue

技术分享

5)在到项目里面,执行svn cleanup。

技术分享

6)ok。

 

 以下是windows解决方案。

1、更新报错:

技术分享

2、原因:

上次cleanup中断,导致无法更新,需要cleanup,但是cleanup也出错,cleanup进入一个死循环
 

3、解决方案:

使用sqlite清空svn的工作队列,就可以进行cleanup操作了
 
4、步骤:

清空svn的队列

1)下载sqlite3.exe   

2)找到你项目的.svn文件,查看是否存在wc.db

3)将sqlite3.exe放到.svn的同级目录

4)启动cmd执行sqlite3 .svn/wc.db "select * from work_queue"

5)看到很多记录,下一步执行delete from work_queue
6)ok了,现在在到项目里面,执行cleanup,完全没问题了,图标状态也已经恢复了。
技术分享
 
 
 

【SVN】总结:svn“Previous operation has not finished; run 'cleanup' if it was interrupted“

标签:rup   finish   分享   图标   inter   命令   from   qfile   nis   

原文地址:http://www.cnblogs.com/BinBinStory/p/7465587.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!