跑 cleanup之後,會出現這樣的訊息
Command: Update Error: Previous operation has not finished; run 'cleanup' if it was interrupted Error: Please execute the 'Cleanup' command. Completed!:
其實是SVN有個工作執行沒有結束,若要 kill 掉這個工作,就要使用 sqlite 工具
(SVN 是以 sqlite 來儲存資料)
1. 要下載 sqlite3.exe 主程式放在 SVN root 目錄下
2. 開啟 cmd, 執行
sqlite3.exe .svn/wc.db "select * from work_queue"
3.刪除 work queue
qlite3.exe .svn/wc.db "delete from work_queue"
4. 把 SVN root 下的 sqlite3.exe 移走