svn:cleanup failed previous operation has not finished; run cleanup if it was interrupted

时间:2022-03-07 01:52:01

svn:cleanup failed previous operation has not finished; run cleanup if it was interrupted

今天 大脑一时短路 在项目中 直接更改文件夹名称 改完之后 才想起来 svn会有问题 ,果然 svn 报错让执行清理命令 但是执行清理后弹出框提示 先前操作没有完成 也就是文章题目中的内容。一度想删掉重新checkout 无奈项目内容太多  估计下班也检索不出来 故而寻求有效解决方法。

首先下载sqlite3.exe (sqlite-shell-win32-x86-3081002) 并放在项目跟路径下

然后 cmd  cd    命令到该项目目录

执行  sqlite3 .svn/wc.db "select * from work_queue" 查看队列是否存在

执行   sqlite3 .svn/wc.db "delete from work_queue"   把队列清空

再次执行   执行  sqlite3 .svn/wc.db "select * from work_queue" 查看队列是否已经清空

然后 重新执行 cleanup 命令 即可