Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 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 将连同其所有提交历史一起迁移。
这个怎么做?
你可以这样做 :
$ git svn clone http://svn/repo/here/trunk
您在这里有更多详细信息:如何将具有历史记录的 SVN 存储库迁移到新的 Git 存储库?