Need to restore a deleted branch in Subversion

前端 未结 7 586
悲&欢浪女
悲&欢浪女 2020-12-07 16:14

I have two working copies of a Subversion repository, one of the trunk, and one of a branch I created.

I accidentally deleted the branch in a repository browser. How

相关标签:
7条回答
  • 2020-12-07 17:11

    I ran into this problem, but the above command didn't work for me. What did was much easier. I checked out the branch at one revision before I removed it.

    The revision that was removed was 9331. I checked it out at 9330:

    svn co https://svn.acme.com/svn/giantFlySwatterTargetingSystem/branches/bug1234@9330 restored
    

    That was the easy solution I wanted.

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