SVN Bug
SVN用久了,有時候會碰到一個很難纏的bug:Previous operation has not finished; run 'cleanup' if it was interrupted;
解決方案:摸這里
小工具:sqlite3在此下載
又一次折騰后,記錄以下幾個注意點:
1):.svn目錄是個隱藏文件夾,sqlite3放到和該文件夾同級的目錄下。
2):執行指令必須使用cmd;在cmd里定位到該sqlite3所在目錄,然后再執行相關指令;(我就是想當然的通過雙擊sqlite3運行,導致浪費了很多時間,shit?。。?/p>
3)核心指令:
sqlite3 .svn/wc.db "select * from work_queue"
sqlite3 .svn/wc.db "delete from work_queue"