Tag Archives: clean up

An error occurs when SVN executes the clean up command

When SVN executes the clean up command, an error “previous operation has not finished” is reported; run ‘cleanup’ if it was interrupted”。 No matter which parent directory you go to, execute “clean up”  “, It’s the same mistake. When executing cleanup, prompt to clean up. It seems to be in a dead circle

1.      Embedded databases are generally managed with SQLite for lightweight. You can go to sqlite-shell-win32-x86: sqlite3.exe on the Internet

2.      To facilitate command line execution, sqlite3.exe is placed in SVN   Under the main directory of the project, at the same level as the. SVN directory

3.      implement   sqlite3 .svn/wc.db “select * from work_Queue “. See 4 records. That’s what I just did

226539| (sync file flags 93) directory name   (file name)

226540|(file-remove 21 .svn/tmp/svn-7B43C232)

226541|(sync-file-flags   Directory name   (file name)

226542|(file-remove 21 .svn/tmp/svn-7B48224E)

4.      implement   sqlite3 .svn/wc.db “delete from work_queue”.   Clear the queue

5.      implement   sqlite3 .svn/wc.db “select * from work_queue”.   Confirm whether the queue has been emptied. If no record is displayed, it indicates that it has been emptied

6.      Finally, try again to see if you can    Clean up. It was a success