Andrew Myrick <amyrick@xxxxxxxxx> wrote: > [Resending because I forgot to make the message plain text] > > I was testing the latest changes to git-svn pushed to Eric's repo > (git://git.bogomips.org/git-svn) by cloning a few other projects that > I work on, and one of those clones failed where it had succeeded with > git 1.6.5. The error message I received is: > > W:svn cherry-pick ignored (/branches/BranchA:3933-3950) - missing 1 commit(s) (eg 3fc50d3a7e0f555547ab34bb570db47ce71e1abb) > W:svn cherry-pick ignored (/branches/BranchB:3951-3970) - missing 1 commit(s) (eg 3beb9f2fde0a91aa0e8097e05f9054b23b221daf) > W:svn cherry-pick ignored (/branches/BranchC:3971-3985) - missing 1 commit(s) (eg a7ae202254604f8a78cca391be36c58efc79eb20) > Found merge parent (svn:mergeinfo prop): 8b2cf9e9250b5ff1fe47c68215d0a178cfe35a3b > Found merge parent (svn:mergeinfo prop): 59f8c571ae77885469bb31f007b0048ee7812e07 > fatal: ambiguous argument '0..1': unknown revision or path not in the working tree. > Use '--' to separate paths from revisions > rev-list -1 0..1: command returned error: 128 Hi Andrew, 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]); Unfortunately I don't know my way around the rest of this code well so I shall defer to Sam if it's something else... -- Eric Wong -- 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