SVN 提交代码出现Previous operation has not finished; run 'cleanup' if it was interrupted的情况

1:不知道怎么回事突然就出现了这个问题,SVN不能提交代码也不能更新代码了,测试又催赶紧提交代码,慌得一批
2:svn执行clean up命令时报错“Previous operation has not finished; run ‘cleanup’ if it was interrupted”。 无论你到那个父层次的目录执行“clean up“,都是报一样的错。想提交或者更新代码都是卡在这个地方
3:网上找了好多方法,都是让下载一个sqlite3.exe才能打开数据库文件
4:网上下载地址:https://www.haote.com/xz/599122.html
(根据电脑32或者64来下载)
5:最好代码放在哪个盘就解压到那个盘创建一个文件夹放进去。
6:然后将解压出来的sqlite3.exe复制到代码根目录的.svn目录下,与wc.db同目录
SVN 提交代码出现Previous operation has not finished; run 'cleanup' if it was interrupted的情况_第1张图片
SVN 提交代码出现Previous operation has not finished; run 'cleanup' if it was interrupted的情况_第2张图片
7:打开命令行Window+R输入cmd进入
8:代码在哪个盘就进入哪个盘,例如我这里是在E盘的,所以就e:进入E盘,然后再cd 复制svn的路径,进入到svn之后再找到sqlite3 wc.db,注意将sqlite3.exe的后缀.exe去掉再空格wc.db打开数据库,
再.table执行可以查看表名,最后执行delete from work_queue; 命令,注意后面有个分号; ,回车就可以正常使用SVN啦
SVN 提交代码出现Previous operation has not finished; run 'cleanup' if it was interrupted的情况_第3张图片
SVN 提交代码出现Previous operation has not finished; run 'cleanup' if it was interrupted的情况_第4张图片

你可能感兴趣的:(SVN 提交代码出现Previous operation has not finished; run 'cleanup' if it was interrupted的情况)