From: Daniel Stenberg Date: Fri, 18 Aug 2017 20:41:48 +0000 (+0200) Subject: scripts/contri*sh: use "git log --use-mailmap" X-Git-Tag: curl-7_56_0~219 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8baead4254798e068b9a42efed8f00e9594ccc42;p=curl scripts/contri*sh: use "git log --use-mailmap" --- 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 | \