From 55dcc1cc024b078bd325b3f21e9b1555a5d16cc5 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Thu, 21 May 2020 05:06:23 +0300 Subject: Add script for generate authors list --- tools/authors.sh | 3 +++ 1 file changed, 3 insertions(+) create mode 100755 tools/authors.sh (limited to 'tools') diff --git a/tools/authors.sh b/tools/authors.sh new file mode 100755 index 000000000..a5b601d37 --- /dev/null +++ b/tools/authors.sh @@ -0,0 +1,3 @@ +#!/usr/bin/env sh + +git log --format=format:"%aN <%aE>"|grep -v "54d463be-8e91-2dee-dedb-b68131a5f0ec"|sort|uniq -- cgit v1.2.3-70-g09d2 From 8e66eddfd8a1abfb1c827ce4a9f33d3e4c5cee87 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Fri, 22 May 2020 04:26:56 +0300 Subject: Add workaorund for authors generation --- tools/authors.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tools') diff --git a/tools/authors.sh b/tools/authors.sh index a5b601d37..da4a576c6 100755 --- a/tools/authors.sh +++ b/tools/authors.sh @@ -1,3 +1,4 @@ #!/usr/bin/env sh -git log --format=format:"%aN <%aE>"|grep -v "54d463be-8e91-2dee-dedb-b68131a5f0ec"|sort|uniq +# grep -v "kenpachi2k11" as workaround for avoid .mailmap issue +git log --format=format:"%aN <%aE>"|grep -v "54d463be-8e91-2dee-dedb-b68131a5f0ec"|grep -v "kenpachi2k11"|sort|uniq -- cgit v1.2.3-70-g09d2