[转]svn 清理失败 (cleanup 失败) 的解决方法

xiaoxiao2021-02-28  89

来源:http://www.tuicool.com/articles/biy6na;http://blog.csdn.net/keenweiwei/article/details/34090553问题

        今天svn遇到一个头疼的问题,最开始更新的时候失败了,因为有文件被锁住了。按照以往的操作,我对父目录进行cleanup操作,但是cleanup操作也失败了!报错:svn cleanup failed–previous operation has not finished; run cleanup if it was interrupted;

         到google搜索解决问题,最后终于找到一个有效的解决办法。以下是别人的回复:

Usually, an svn cleanup fixes most issues with tortoise svn. However, I ran into an issue which caused me some grief.The specific error I was seeing:Previous operation has not finished; run 'cleanup' if it was interruptedSolution: Somehow, svn is stuck on the previous operation. We need to remove this operation from it’s ‘work queue’.The data is stored in the wc.db sqllite database in the offending folder.1. Install sqllite (32 bit binary for windows) from here2. sqlite .svn/wc.db “select * from work_queue”The SELECT should show you your offending folder/file as part of the work queue. What you need to do is delete this item from the work queue.     3. sqlite .svn/wc.db “delete from work_queue*That’s it. Now, you can run cleanup again – and it should work. Or you can proceed directly to the task you were doing before being prompted to run cleanup (adding a new file etc.)Also, svn.exe (a command line tool) is part of the Tortoise installer – but is unchecked for some reason. Just run the installer again, choose ‘modify’ and select the ‘command line tools’.

翻译过来就是,通过sqlite将svn中之前的工作队列清空,这样子就可以进行cleanup操作啦。

错误原因:不知道0.0!解决方法step1:到sqlite官网(http://www.sqlite.org/download.html)下载sqlite3.exe;找到PrecompiledBinariesforWindows,点击sqlite-shell-win32-x86-3080500.zip下载,300KB左右.step2:将下载到的sqlite3.exe放到某文件目录(我这里是F:\devTools\sqlite3)step3:然后设置svn源代码文件夹及文件显示所有文件(包括隐藏文件),会发现.svn/wc.db文件,将其复制到step2的目录下step4:开始->运行->打开cmd命令,跳转到setp2的文件目录中,执行打开wc.db的操作,然后删除里面work_queue表的数据即可,具体见图:step5:将wc.db覆盖到svn源代码目录的.svn目录下(替换原来的wc.db)。step6:再次对svn目录进行clean操作,即可cleanUp成功。

经验证,真实可行。

转载请注明原文地址: https://www.6miu.com/read-1950004.html

最新回复(0)