svn报错:“Previous operation has not finished; run 'cleanup' if it was interrupted“ 的解决方法

做项目中,可能同事之间没商量好提交冲突,之后无法更新svn,cleanup也不起作用。出现"Previous operation has not finished; run 'cleanup' if it was interrupted"的提示。搜到了比较有效的办法:

1.由于并不知道那个所谓的.svn文件在哪,对workspace进行了一次全局搜索,找到了无法cleanup那天的其中一个.svn文件夹,默认为隐藏文件,把下载好的sqlite3.exe拷贝到.svn里面(注意是文件夹里面)


2.shift+右键,选择"在此处打开命令窗口",直接进到.svn文件夹的命令窗口界面,执行sqlite3 wc.db,打开数据库

          svn报错:“Previous operation has not finished; run 'cleanup' if it was interrupted“ 的解决方法_第1张图片

           

        2. 执行.table 可以查看表名

           svn报错:“Previous operation has not finished; run 'cleanup' if it was interrupted“ 的解决方法_第2张图片

 

        3. 执行delete from work_queue; 命令。

            svn报错:“Previous operation has not finished; run 'cleanup' if it was interrupted“ 的解决方法_第3张图片

 

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




你可能感兴趣的:(svn问题归类)