Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nanopb/nanopb.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorPetteri Aimonen <jpa@git.mail.kapsi.fi>2020-06-23 10:03:30 +0300
committerPetteri Aimonen <jpa@git.mail.kapsi.fi>2020-06-23 10:25:57 +0300
commitd232baf33cb5361fced18ceddd93220663aba78c (patch)
treebe632f90f91d1c806f76bc5055153c112e03e266 /tools
parent6af9963a1c255fce680e39812405a261f43b74e5 (diff)
Update changelog and authors
Diffstat (limited to 'tools')
-rwxr-xr-xtools/list_authors.sh7
1 files changed, 7 insertions, 0 deletions
diff --git a/tools/list_authors.sh b/tools/list_authors.sh
new file mode 100755
index 0000000..f9391f5
--- /dev/null
+++ b/tools/list_authors.sh
@@ -0,0 +1,7 @@
+#!/bin/bash
+
+sed -ir '/^\s*$/d' AUTHORS.txt # Remove empty lines
+
+echo "New authors:"
+git log --format='%aN <%aE>' | grep -vFf AUTHORS.txt | sort -u
+