Svn error “Previous operation has not finished”

前端 未结 13 1087
忘掉有多难
忘掉有多难 2021-02-01 16:30

This morning i was committing several items to a svn repository. During the commit operation my operating system crashed and now all svn commands (Including clean up) ends up wi

相关标签:
13条回答
  • 2021-02-01 17:06

    I got this error too, and I don't want to download sqlite. And finally I solve this by :

    1. Close my eclipse.(this is important, without this I can't do the next step successfully)
    2. On your project folder, right click, TortoiseSVN->Clean Up->OK

    then I can update and commit without error!

    0 讨论(0)
  • 2021-02-01 17:09

    'svn cleanup' worked for me. You might need to run this as Administrator.

    0 讨论(0)
  • 2021-02-01 17:10

    In case someone else is also facing this issue he can use below options.

    go to SVN -> cleanup (GUI) and select below 3 options.

    It will definitely work.

    0 讨论(0)
  • 2021-02-01 17:13
    • Run svn cleanup against your working copy (show us the result if it errors our)

      or

    • Checkout a fresh working copy using svn checkout command and copy your changes from the broken wc to this one. Run commit again via the new working copy.

    0 讨论(0)
  • 2021-02-01 17:15

    I have seen a lot of threads and answer to the same question. What I saw most is "Run Cleanup" to the top level of the directory. But I have tried it most and Still I got the error. So What I did is to resolve it to the completion.

    • Install sqllite (32 bit binary for windows). Put the exe in the folder where the top level .svn directory resides.

    • sqlite .svn/wc.db “select * from work_queue”;

    • delete from work_queue;

    Execute these three statements and after this run cleanup. It will run without any hassel.

    0 讨论(0)
  • 2021-02-01 17:17

    Insure that your working directory is not opened in any IDE.

    If opened, close that and then do svn clean-up.

    0 讨论(0)
提交回复
热议问题