如何将一个特定的 SVN 分支导入到 git 存储库?
我们最近从 SVN 迁移到 Git,但我需要将一个遗留分支引入 Git 存储库。 SVN 和 Git 存储库是相同的逻辑代码(即它们都称为 foo-lib),但 Git 存储库在我们切换到 Git 后有了更新的修订版。
有没有一种方法可以使用 git-svn 来获取特定分支的历史记录并将其移植到 git 树的历史记录中?
We recently moved from SVN to Git, but there's a single legacy branch that I need to bring in to the Git repository. The SVN and Git repositories are the same logical code (i.e. they're both called foo-lib), but the Git one has newer revisions from after we switched to Git.
Is there a way we can use git-svn to grab the history of a specific branch and graft it into the history of the git tree?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据VonC的评论,我查看了这个问题并做了类似的事情:
Based on VonC's comment, I took a look at this question and did something like: