Svn error “Previous operation has not finished”

前端 未结 13 1089
忘掉有多难
忘掉有多难 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:31

    I tried the top solution by Sigurd V, but the SELECT query gave me errors. I'm using SVN 1.9.2 and SQLite 3.13.0.

    To clarify, the file to download from SQLite site is "sqlite-tools-win32-x86-3130000.zip(1.51 MiB)"

    Here is what I did with help form our software eng:

    1. download this zip and copied sqlite3.exe into my working copy folder
    2. in cmd line, connect to the svn database in this folder: sqlite3.exe .svn/wc.db
    3. type command to SQLite to show what's locked up: sqlite> select * from work_queue;
    4. type command to SQLite to delete the requests: sqlite> delete from work_queue;
    5. repeat step3 to check nothing is locked.
    6. everything is back normal now!

    Screenshot showing step3/4/5:

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