From 9de086d16d0f92b27906635944fd3ab46a6b8db1 Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Sat, 18 Jul 2015 22:48:53 -0400 Subject: [PATCH] removed merges from count --- hacking/authors.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hacking/authors.sh b/hacking/authors.sh index 528c3d82749..633240fe159 100755 --- a/hacking/authors.sh +++ b/hacking/authors.sh @@ -4,7 +4,7 @@ set -e # Get a list of authors ordered by number of commits # and remove the commit count column -AUTHORS=$(git --no-pager shortlog -nse | cut -f 2- ) +AUTHORS=$(git --no-pager shortlog -nse --no-merges | cut -f 2- ) if [ -z "$AUTHORS" ] ; then echo "Authors list was empty" exit 1