使用 git svn 我可以导入 git 存储库最近 100 个修订吗?

发布于 2024-10-03 16:55:36 字数 272 浏览 4 评论 0原文

我正在尝试将大型 svn 存储库克隆到我的 git 存储库。 问题是那个代表。太大并且 svn clone 运行太慢。 有没有办法只克隆最后 N 个修订版?

类似这样的东西:

git svn clone http://svn/svn/test . (from 200 to 400 revision)

或者类似的东西:

git svn fetch (20,30,40-50 revisions)

I am trying to clone big svn repository to my git repository.
The problem is that rep. is too big and svn clone works too slow.
Is there way to clone only last N revisions?

Something like that:

git svn clone http://svn/svn/test . (from 200 to 400 revision)

or maybe something like that:

git svn fetch (20,30,40-50 revisions)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

卷耳 2024-10-10 16:55:36

如果它是一个 git 存储库,您可以

git svn clone (url) --depth (N)

但是在 SVN 中查找“N 个修订版本”的修订号并不简单,这与 Git 不同。

因此,您必须自己指定 SVN 的修订号。

Alex 提供了正确的语法。

git svn clone -s -r534:HEAD http://some/svn/repo

但记住并执行以下操作会更容易:

# checkout a specific revision
git svn clone -r N svn://some/repo/branch/some-branch
# enter it and get all commits since revision 'N'
cd some-branch
git svn rebase

If it were a git repo, you could

git svn clone (url) --depth (N)

But it is non-trivial in SVN to find the revision number of "N revisions back", unlike in Git.

So, you have to specify the revision number of the SVN yourself.

Alex has provided the right syntax.

git svn clone -s -r534:HEAD http://some/svn/repo

But it is easier on your head to remember and do the following:

# checkout a specific revision
git svn clone -r N svn://some/repo/branch/some-branch
# enter it and get all commits since revision 'N'
cd some-branch
git svn rebase
睡美人的小仙女 2024-10-10 16:55:36

使用 -r 开关指定您想要开始克隆的 SVN 修订号。 <代码>-r$REV:HEAD。

像这样的:

 git svn clone --prefix=svn/ -s -r$REV:HEAD path/to/repo

其中 $REV 是您希望开始克隆的修订号。

Specify the SVN revision number that you want to start your clone at with the -r switch. -r$REV:HEAD.

Something like this:

 git svn clone --prefix=svn/ -s -r$REV:HEAD path/to/repo

Where $REV is the revision number you wish to start the clone at.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文