How can I release locks in Subversion recursively?

前端 未结 9 1332
青春惊慌失措
青春惊慌失措 2021-02-01 12:24

I am having a problem with version control in Subversion. I checked out a working copy from respository and got locks on all of its files. Then, without releasing the locks I ha

9条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-02-01 13:19

    For me deleting the lock file inside .svn did not work since I got bad checksum msg after trying to update the file.

    I got the following msg after executing svn cleanup inside the directory:

    svn: In directory '' svn: Can't copy '.svn/tmp/text-base/file_name.svn-base' to 'filename.3.tmp': No such file or directory

    So I copied my file to .svn/tmp/text-base and changed the name to file_name.svn-base. Then cleanup and update worked fine.

提交回复
热议问题