Answer by Vinoth Ramamoorthy for How to git-svn clone the last n revisions...
tried with tortoisegit tool from SVN repository option, its working for me.
View ArticleAnswer by 936940 for How to git-svn clone the last n revisions from a...
I have had the error several times"revision argument: :HEAD not understood by git-svn"it works by increasing the number of revision limitsfor example 100 instead of 50./git-svn-cloneback.sh -u...
View ArticleAnswer by jonathan.cone for How to git-svn clone the last n revisions from a...
... 7 years later, in the desert, a tumbleweed blows by ...I wasn't satisfied with the accepted answer so I created some scripts to do this for you available on Github. These should help anyone who...
View ArticleAnswer by Christian for How to git-svn clone the last n revisions from a...
I find myself using the following often to get a limited number of revisions out of our huge subversion tree (we're soon reaching svn revision 35000).# checkout a specific revisiongit svn clone -r N...
View ArticleAnswer by Paul for How to git-svn clone the last n revisions from a...
You've already discovered the simplest way to specify a shallow clone in Git-SVN, by specifying the SVN revision number that you want to start your clone at ( -r$REV:HEAD). For example: git svn clone...
View ArticleHow to git-svn clone the last n revisions from a Subversion repository?
ProblemHow do you create a shallow copy with git-svn from a Subversion repository, e.g. how do you pull only the last three revisions?The git clone command can get the last n revisions from a Git...
View Article