這里寫自定義目錄標題
- 1報錯項目
- 2.解決辦法
- 1.安裝sqlite3.exe 數據庫
- 2.sqlite3.exe放到svn 項目的主目錄下,和.svn目錄同級下, 可以直接在數據庫目錄下執行cmd命令。
- 3.在當前目錄下 cmd 運行命令
- 4.最后再項目的文件夾下,看是否可以 clean up了。--成功,搞定
1報錯項目
svn: E155037: Commit failed (details follow): svn: E155037: Previous operation has not finished; run ‘cleanup’ if it was interrupted
8:57 Commit failed with error
0 files committed, 12 files failed to commit
svn: E155037: Commit failed (details follow):
svn: E155037: Previous operation has not finished; run ‘cleanup’ if it was interrupted
2.解決辦法
1.安裝sqlite3.exe 數據庫
https://www.sqlite.org/
2.sqlite3.exe放到svn 項目的主目錄下,和.svn目錄同級下, 可以直接在數據庫目錄下執行cmd命令。
3.在當前目錄下 cmd 運行命令
1.執行 sqlite3 .svn/wc.db “select * from work_queue”. 看到有1條記錄。即為堵塞的命令。
2.執行 sqlite3 .svn/wc.db “delete from work_queue”. 把隊列清空。
3.執行 sqlite3 .svn/wc.db “select * from work_queue”. 確認一下是否已經清空隊列,發現已經沒有記錄顯示,說明已經清空了。