使用 git svn 我可以导入 git 存储库最近 100 个修订吗?
我正在尝试将大型 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果它是一个 git 存储库,您可以
但是在 SVN 中查找“N 个修订版本”的修订号并不简单,这与 Git 不同。
因此,您必须自己指定 SVN 的修订号。
Alex 提供了正确的语法。
但记住并执行以下操作会更容易:
If it were a git repo, you could
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.
But it is easier on your head to remember and do the following:
使用
-r
开关指定您想要开始克隆的 SVN 修订号。 <代码>-r$REV:HEAD。像这样的:
其中
$REV
是您希望开始克隆的修订号。Specify the SVN revision number that you want to start your clone at with the
-r
switch.-r$REV:HEAD
.Something like this:
Where
$REV
is the revision number you wish to start the clone at.