問題:同步、cleanup都會出現下面的提示
svn: E155017: Can't install '*' from pristine store, because no checksum is recorded for this file
svn報錯:“Previous operation has not finished; run 'cleanup' if it was interrupted“
解決方案:
1.使用sqlite操作本地svn的倉庫根目錄,我直接進到svn的倉庫根目錄,找到了.svn隱藏目錄。
zz@T630:VC$ sqlite3 .svn/wc.db SQLite version 3.13.0 2016-05-18 10:57:30 Enter ".help" for usage hints. sqlite> select * from work_queue; 2009023|(file-install vc/branches/svn-1576-sdk/readme 1 0 1 1) sqlite> delete from work_queue;
執行完上面的代碼后,再執行svn cleanup和svn up就正常了
sqlite配置下載安裝教程
轉發:https://blog.csdn.net/k7arm/article/details/81168416