From: Eric Wong Date: Tue, 13 Feb 2007 23:56:08 +0000 (-0800) Subject: git-svn: include merges when calling rev-list for decommit X-Git-Tag: v1.5.1-rc1~170 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=ce207c7ad1604c6afd5014051641e40f346a59c6;p=git.git git-svn: include merges when calling rev-list for decommit Merge commits can be created when following certain parents, (most notably 'R' cases) and we definitely don't want to exclude them. Signed-off-by: Eric Wong --- diff --git a/git-svn.perl b/git-svn.perl index 09c0aba8e..66653f9eb 100755 --- a/git-svn.perl +++ b/git-svn.perl @@ -278,7 +278,7 @@ sub cmd_dcommit { my $head = shift; $head ||= 'HEAD'; my ($url, $rev, $uuid); - my ($fh, $ctx) = command_output_pipe(qw/rev-list --no-merges/, $head); + my ($fh, $ctx) = command_output_pipe('rev-list', $head); my @refs; my $c; while (<$fh>) {