diff options
author | Brian Coca <brian.coca+git@gmail.com> | 2015-07-19 04:48:53 +0200 |
---|---|---|
committer | Brian Coca <brian.coca+git@gmail.com> | 2015-07-19 04:49:50 +0200 |
commit | 9de086d16d0f92b27906635944fd3ab46a6b8db1 (patch) | |
tree | 9350ac73475f814c48b91666c34817fecb9df870 /hacking/authors.sh | |
parent | Merge pull request #11644 from indrajitr/detect-homebrew (diff) | |
download | ansible-9de086d16d0f92b27906635944fd3ab46a6b8db1.tar.xz ansible-9de086d16d0f92b27906635944fd3ab46a6b8db1.zip |
removed merges from count
Diffstat (limited to 'hacking/authors.sh')
-rwxr-xr-x | hacking/authors.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hacking/authors.sh b/hacking/authors.sh index 528c3d8274..633240fe15 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 |