(轉)svn cleanup failed–previous operation has not finished; run cleanup if it was interrupted
Posted on 2014-07-22 09:46 瘋狂 閱讀(2462) 評論(1) 編輯 收藏 所屬分類: questions_hander轉自:http://blog.csdn.net/luojian520025/article/details/22196865
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
6.ok了,現在在到項目里面,執行cleanup,完全沒問題了,圖標狀態也已經恢復了。