将scm-manager-svn repo迁移到git repo的分支

时间:2017-08-30 12:14:43

标签: git svn version-control scmmanager

我正在使用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。

怎么做?

1 个答案:

答案 0 :(得分:0)

你可以这样做:

   $ git svn clone http://svn/repo/here/trunk

您在此处了解更多详情:How to migrate SVN repository with history to a new Git repository?

相关问题