On Dec 22, 2009, at 11:21 AM, Eric Wong wrote: > That looks like a simple error, does the following patch help? > > diff --git a/git-svn.perl b/git-svn.perl > index 3670960..dba0d12 100755 > --- a/git-svn.perl > +++ b/git-svn.perl > @@ -3163,7 +3163,8 @@ sub find_extra_svn_parents { > next unless $new_parents[$i]; > next unless $new_parents[$j]; > my $revs = command_oneline( > - "rev-list", "-1", "$i..$j", > + "rev-list", "-1", > + "$new_parents[$i]..$new_parents[$j]", > ); > if ( !$revs ) { > undef($new_parents[$i]); > > Worked like a charm; the fetch is proceeding now. Thanks, Eric! Do you know what the "svn cherry-pick ignored" warnings mean, and if it's something I should be concerned about? This particular project is missing up to 65 commits at some revisions. -Andrew-- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html