When I submitted SVN today, it paused. I thought I had already submitted it. I just clicked it and the result could no longer be recovered...
Error
Cleanup failed-previous operation has not finished; run cleanup if it was interrupted
After cleanup is executed, the result is also failed. The solution is as follows:
1.download sqlite3.exe
2. find the project. file ending with SVN. (This file is hidden, usually in the root directory of the entire SVN project ). we can see WC in it. DB file.
3. Put the downloaded sqlite3 in the directory at the same level as SVN.
4. Open cmd, go to the path where. SVN is located, and then execute sqlite3. SVN/WC. DB "select * From work_queue"
5. After the execution, we can see that there will be a line of records in the CMD window. These are the queues that SVN has executed in half.
6. continue executing sqlite3. SVN/WC. DB "delete from work_queue"
7. run sqlite3 again. SVN/WC. DB "select * From work_queue" to check whether the queue can be retrieved. If no record exists, the deletion is successful.
8. Return to the folder with an error in SVN, right-click it, and execute the clean up command to clean up.
Source: http://blog.csdn.net/luojian520025/article/details/22196865
SVN error cleanup failed-previous operation has not finished; run cleanup if it was interrupted Solution