How to move an SVN repository to a new server

后端 未结 4 804
遇见更好的自我
遇见更好的自我 2021-01-30 07:19

We would like to merge two of our servers together and in order to do that we would need to install SVN on the \"new\" server and then move over all of our repositories that we

4条回答
  •  不思量自难忘°
    2021-01-30 07:29

    If the new server uses the same operating system you can just copy the entire repository folder to the new server. No need to dump and reload it.

    The relocate command allows you to point your working copy to the new server i.e. it does not help you to move the repository, it just saves you from doing a fresh checkout.

    Externals can be a problem but do not have to be. If the external repository was on the same server then you probably specified the external with a relative URL. If the new server uses the same structure then everything should work just fine.

提交回复
热议问题