本文主要是介绍svn cleanup failed-previous operation has not finished; run cleanup if it was interrupted,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
刚刚在用svn提交代码的时候出现了标题中出现的问题,经过google查到了解决问题的方法
方法如下,
一、下载sqlite3.exe,地址:http://www.sqlite.org/2015/sqlite-shell-win32-x86-3081002.zip
二、解压后,将sqlite3.exe 放到 项目 与 .svn 同级别的目录下面
三、运行cmd 到 .svn所在目录,运行 sqlite3.exe .svn/wc.db "select * from work_queue"
,再运行 delete from work_queue
四、再到项目目录,右键,找到 clean up ,点击,然后再重新提交就ok
这篇关于svn cleanup failed-previous operation has not finished; run cleanup if it was interrupted的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!