diff --git a/scripts/authors.pl b/scripts/authors.pl index 89502c6985..a3536ff110 100755 --- a/scripts/authors.pl +++ b/scripts/authors.pl @@ -17,15 +17,17 @@ our $author; my $input; if (@ARGV > 0) { - open $input, "git log --shortstat -z --minimal -w -C $ARGV[0]|" or die "cannot open pipe for $ARGV[0]: $!\n"; + open $input, "git log --no-merges --shortstat -z --minimal -w -C $ARGV[0]|" or die "cannot open pipe for $ARGV[0]: $!\n"; } else { $input = \*STDIN; } while (<$input>) { ($author) = /Author: (.*)