当前位置: 代码迷 >> 综合 >> TortoiseSVN报错:“Previous operation has not finished; run ‘clean up‘ if it was interrupted“ 的解决方法
  详细解决方案

TortoiseSVN报错:“Previous operation has not finished; run ‘clean up‘ if it was interrupted“ 的解决方法

热度:52   发布时间:2024-02-12 15:50:36.0

遇到SVN报这样的错,更新不了,也不能clean up。

这个操作应该是在更新或clean up的过程中,出现了锁的情况。

 针对这个问题的解决办法,最快的进入到项目所在的.SVN目录下,找到wc.db这个文件,然后找个干净的wc.db文件直接替换。

再次执行clean up,就可以了。

 

如果还不能解决,那么需要下载sqlite3.exe这个文件,放在含有.svn的目录下,

下载地址:

网址:http://www.sqlite.org/download.html  下载sqlite-tools-win32-x86-3210000.zip,注意下载匹配自己操作系统的文件。

 

运行cmd,进入到你的.svn所在的路径下,执行sqlite3 wc.db;

执行.table查看表名

 

执行delete from work_queue; 

 

重试clean up操作,问题解决。 

  相关解决方案