Subversion stuck due to “previous operation has not finished”?

后端 未结 29 2567
情歌与酒
情歌与酒 2020-12-12 08:48

If I try to update my subversion repo, it says I must run cleanup. If I run cleanup, it says a file is missing. (I deleted a MASSIVE directory of files that failed to commit

相关标签:
29条回答
  • 2020-12-12 09:38

    In my case I had gulp-watch running that caused the problems. After stopping it I could execute Cleanup command.

    0 讨论(0)
  • 2020-12-12 09:38

    Workaround that worked for me:

    1. Cut the content of your directory and copy it to another folder.
    2. Run cleanup from command line on the empty folder.
    3. Copy the files back in the original folder.

    Done, but I cannot explain why this happens. If you don't remove the files, the cleanup command say that he can't read/write those files.

    0 讨论(0)
  • 2020-12-12 09:38

    In my case a background Java Virtual Machine instance was running, killing which cleanup was successful.

    0 讨论(0)
  • 2020-12-12 09:40

    I have also stuck with the same issue I have tried blow:

    1.Try kill the process related to svn i.e. TSVNCache.exe and TortoiseProc 2.Reverting the unversioned files and deletion of same, which I have in svn . 3.cleanup using command prompt "svn cleanup"

    and finally when restarted the desktop it worked for me , So for restart of system worked for me

    0 讨论(0)
  • 2020-12-12 09:40

    I tried removing the .svn folder to other location and placed it back in the same root folder. After when I tried to update the SVN, it got updated. I don't know how exactly it worked.

    0 讨论(0)
  • 2020-12-12 09:40

    I had taken .svn folder from my fellow developer and replaced my .svn folder with this. It worked for me. Don't know what may be other consequences!

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