我正在使用scm-manager;
我使用SVN和git。我需要将SVN存储库迁移到git存储库的分支。
示例:
SVN存储库名称:test-3.2
Git存储库名称:test-3.0
在这个git-test-3.0中,我需要一个分支作为test-3.2。在该SVN存储库下,将使用其所有提交历史记录迁移test-3.2。
怎么做?
答案 0 :(得分:0)
你可以这样做:
$ git svn clone http://svn/repo/here/trunk
您在此处了解更多详情:How to migrate SVN repository with history to a new Git repository?