Git Svn Fetch More Revisions
Posted
by vigilant
on Stack Overflow
See other posts from Stack Overflow
or by vigilant
Published on 2009-11-24T07:00:01Z
Indexed on
2010/03/30
1:03 UTC
Read the original article
Hit count: 432
I am using git-svn for our svn repository. However, the repo is huge, so I first checked out the project like so:
git svn clone svn://svn.server.com/project -s -r 12000:HEAD
So, now I have only revisions 12000 to the current revision. I would like to checkout some more revisions, but the following does nothing:
git svn fetch -r 11000:HEAD
Is there a way to fetch older revisions?
© Stack Overflow or respective owner