diff options
author | Daniel Stenberg <daniel@haxx.se> | 2019-11-08 09:45:58 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2019-11-08 09:45:58 +0100 |
commit | 58f7ec1639917fc644014f7f81a0b554f7405ab7 (patch) | |
tree | f6e0c368be7c09e0cb2b8bbef65b0c03f8f1f176 /scripts | |
parent | feea3c27ced7a5e557c2bf15cab44f500dcfcfd6 (diff) | |
download | curl-58f7ec1639917fc644014f7f81a0b554f7405ab7.tar.gz |
scripts/contributors: make committers get included too
in addition to authors
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/contributors.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/contributors.sh b/scripts/contributors.sh index d37c1199e..a826595c9 100755 --- a/scripts/contributors.sh +++ b/scripts/contributors.sh @@ -6,7 +6,7 @@ # | (__| |_| | _ <| |___ # \___|\___/|_| \_\_____| # -# Copyright (C) 2013-2018, Daniel Stenberg, <daniel@haxx.se>, et al. +# Copyright (C) 2013-2019, Daniel Stenberg, <daniel@haxx.se>, et al. # # This software is licensed as described in the file COPYING, which # you should have received as part of this distribution. The terms @@ -44,7 +44,7 @@ fi # sort all unique names # awk them into RELEASE-NOTES format ( -git log --use-mailmap $start..HEAD | \ +git log --pretty=full --use-mailmap $start..HEAD | \ egrep -ai '(^Author|^Commit|by):' | \ cut -d: -f2- | \ cut '-d(' -f1 | \ |