Skip to content
Snippets Groups Projects

update_mailmap: ignore merge commits, consistent with update_authors

Merged Karl Wette requested to merge (removed):update-mailmap-git-log-no-merges into master
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -22,7 +22,7 @@ while (<IN>) {
}
close IN;
open IN, "git log HEAD | git shortlog --summary --email --numbered |" or die $!;
open IN, "git log --full-history --no-merges HEAD | git shortlog --summary --email --numbered |" or die $!;
binmode IN, ":encoding(UTF-8)";
while (<IN>) {
chomp;
Loading