如何将一个特定的 SVN 分支导入到 git 存储库?

发布于 2024-09-08 17:12:17 字数 176 浏览 4 评论 0原文

我们最近从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

碍人泪离人颜 2024-09-15 17:12:17

根据VonC的评论,我查看了这个问题并做了类似的事情:

git svn clone -A ~/.git/svn.authors http://svn/branches/foo svn-foo
git clone git@git:blah/foo.git new-foo
cd new-foo
git pull ../svn-foo :old-foo

Based on VonC's comment, I took a look at this question and did something like:

git svn clone -A ~/.git/svn.authors http://svn/branches/foo svn-foo
git clone git@git:blah/foo.git new-foo
cd new-foo
git pull ../svn-foo :old-foo
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文