How do I migrate an SVN repository to another SVN repository?

前端 未结 9 830
小蘑菇
小蘑菇 2020-12-07 13:07

Is there a simple way to copy a directory from one repository into another repository with copying all of the history?

9条回答
  •  囚心锁ツ
    2020-12-07 13:51

    I think it should be stated that the dump file created by utilizing

        svnadmin dump path/to/repos > dumpfile
    

    can be created (from svn 1.7 and forth) using the command

       svnrdump dump url_to_repos > dumpfile
    

    This is useful when done from a remote computer and not the server.

提交回复
热议问题