SVN中报错 “Previous operation has not finished; run 'cleanup' if it was interrupted” 的解决办法

SVN中在执行 clean up 时出现 “Previous operation has not finished; run 'cleanup' if it was interrupted” 错误的解决办法

在使用 SVN 版本控制工具过程中,遇到执行 clean up 命令报错 “Previous operation has not finished; run 'cleanup' if it was interrupted” 的情况,无论你到那个父层次的目录执行 “clean up“,都是报一样的错。即使将数据删除,想重新 check out 都不行。

 【解决办法】
先下载 sqlite3.exe,下载地址: http://www.sqlite.org/download.html,下载 sqlite-tools-win32-x86-3190300.zip,如下图:
SVN中报错 “Previous operation has not finished; run 'cleanup' if it was interrupted” 的解决办法_第1张图片
下载解压后,里面的工具即可使用,不需要安装。
用 sqlite3.exe 打开 wc.db 数据库,运行命令行窗口,执行 sqlite3.exe 打开本地 svn 仓库根目录下的 .svn 文件夹下的 wc.db 数据库。
SVN中报错 “Previous operation has not finished; run 'cleanup' if it was interrupted” 的解决办法_第2张图片
看上图,执行 .table 可以查看表名。
然后按上图所示执行 delete from work_queue 语句。

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

参考:http://www.cnblogs.com/simmonner1999/p/5533465.html

你可能感兴趣的:(工具)