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 <redacted>
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>) {