一.报错信息:

SVN报错解决:Error : Previous operation has not finished; run ‘cleanup‘ if it was interrupted.

二.问题原因

可能是修改本地的文件之前没有update,导致commit的时候产生冲突,致使SVN崩溃。

 

三.解决方案

第一种方案:按照SVN提示:运行TortoiseSVN------>clean up 即可解除锁定,重新上传或者更新。

SVN报错解决:Error : Previous operation has not finished; run ‘cleanup‘ if it was interrupted.

SVN报错解决:Error : Previous operation has not finished; run ‘cleanup‘ if it was interrupted.     

第二种方案:利用sqlite工具采用命令的形式进行删除清除

1.下载安装sqlite,下载地址:https://www.sqlite.org/download.html

SVN报错解决:Error : Previous operation has not finished; run ‘cleanup‘ if it was interrupted.

2.下载好,解压找个目录存放,然后进行Path环境变量配置,以便采用命令的方式进行执行

SVN报错解决:Error : Previous operation has not finished; run ‘cleanup‘ if it was interrupted.

 

SVN报错解决:Error : Previous operation has not finished; run ‘cleanup‘ if it was interrupted.

3.windows+R键打开cmd命令,检查sqlite配置成功与否:

1)输入 sqlite3 如果弹出以下信息就是配置成功;如果弹出:不是内部命令则没有配置成功。

SVN报错解决:Error : Previous operation has not finished; run ‘cleanup‘ if it was interrupted.

 4.按照流程进行清除:

1)命令找到对应项目的目录中的.svn文件目录(该文件默认隐藏,修改属性进行显示),并查看是否存在wc.db文件;

SVN报错解决:Error : Previous operation has not finished; run ‘cleanup‘ if it was interrupted.

2)输入:sqlites3 select * from work_queue;查看到对应锁定的文件信息;

3)输入:sqlite3 delete from work_queue;即可解除锁定的文件。

 

 

相关文章: