]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
tools/git-contrib: list contributions not only from Weblate
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Tue, 29 Mar 2022 17:42:01 +0000 (19:42 +0200)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Tue, 29 Mar 2022 17:42:01 +0000 (19:42 +0200)
It seems that --invert-grep used to affect --author, but now it doesn't (with
git-2.35.1-1.fc36.x86_64), so effectively we would only show the one entry that
was supposed to be filtered out.

tools/git-contrib.sh

index f0756b4e45bb7fe2ea5811bfd2973a3cc0c95ed8..cde1ecd22782e82113b83970bf187ffa89b5dc25 100755 (executable)
@@ -3,7 +3,8 @@
 set -eu
 
 tag="$(git describe --abbrev=0 --match 'v[0-9][0-9][0-9]')"
-git log --pretty=tformat:%aN --author=noreply@weblate.org --invert-grep -s "${tag}.." | \
+git log --pretty=tformat:%aN -s "${tag}.." |
+    grep -v noreply@weblate.org |
     sed 's/ / /g; s/--/-/g; s/.*/\0,/' |
-    sort -u | tr '\n' ' ' | sed -e "s/^/Contributions from: /g" -e "s/,\s*$/\n/g" | fold -w 72 -s | \
+    sort -u | tr '\n' ' ' | sed -e "s/^/Contributions from: /g" -e "s/,\s*$/\n/g" | fold -w 72 -s |
     sed -e "s/^/        /g" -e "s/\s*$//g"