How to rename an SVN branch and update references in an existing sandbox?

后端 未结 3 1362
自闭症患者
自闭症患者 2020-12-24 10:37

I needed to rename a SVN branch, so I did:

$ svn move https://server/repos/myrepo/branches/oldbranch \\
    https://server/repos/myrepo/branches/newbranch
<
3条回答
  •  南方客
    南方客 (楼主)
    2020-12-24 11:13

    Just do

    svn switch https://server/repos/myrepo/branches/newbranch
    

    from within your working copy.

提交回复
热议问题