SVN clean失敗解決方法【轉】

發表於2017-12-20

原文地址:
http://blog.csdn.net/victory08/article/details/42100325/

 

svn執行clean up後出現提示:svn cleanup failed–previous operation has not finished; run cleanup if it was interrupted

svn提交遇到噁心的問題,可能是因為上次cleanup中斷後,進入死迴圈了。

錯誤如下:

 

解決方法:清空svn的佇列

1.下載sqlite3.exe   

2.找到你專案的.svn檔案,檢視是否存在wc.db

3.將sqlite3.exe放到.svn的同級目錄

4.啟動cmd執行sqlite3 .svn/wc.db "select * from work_queue"

5.看到很多記錄,下一步執行delete from work_queue

 

相關文章