diff options
author | Daniel Stenberg <daniel@haxx.se> | 2017-08-18 22:41:48 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2017-08-18 22:41:48 +0200 |
commit | 8baead4254798e068b9a42efed8f00e9594ccc42 (patch) | |
tree | 95a8389d8f5f8b99d87a8ccecbe7116217597f44 /scripts | |
parent | 058c8a6f2eb7d15512199007db8da4d72549a771 (diff) | |
download | curl-8baead4254798e068b9a42efed8f00e9594ccc42.tar.gz |
scripts/contri*sh: use "git log --use-mailmap"
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/contributors.sh | 2 | ||||
-rwxr-xr-x | scripts/contrithanks.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/scripts/contributors.sh b/scripts/contributors.sh index fcaaff878..db7aab8e0 100755 --- a/scripts/contributors.sh +++ b/scripts/contributors.sh @@ -44,7 +44,7 @@ fi # sort all unique names # awk them into RELEASE-NOTES format ( -git log $start..HEAD | \ +git log --use-mailmap $start..HEAD | \ egrep -ai '(^Author|^Commit|by):' | \ cut -d: -f2- | \ cut '-d(' -f1 | \ diff --git a/scripts/contrithanks.sh b/scripts/contrithanks.sh index 4d6d47a80..d3dad3e90 100755 --- a/scripts/contrithanks.sh +++ b/scripts/contrithanks.sh @@ -35,7 +35,7 @@ fi cat ./docs/THANKS ( -git log $start..HEAD | \ +git log --use-mailmap $start..HEAD | \ egrep -ai '(^Author|^Commit|by):' | \ cut -d: -f2- | \ cut '-d(' -f1 | \ |