summaryrefslogtreecommitdiff
path: root/pkg/tools
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/tools')
-rwxr-xr-xpkg/tools/get_authors.sh11
1 files changed, 10 insertions, 1 deletions
diff --git a/pkg/tools/get_authors.sh b/pkg/tools/get_authors.sh
index 0169bb17..1759675f 100755
--- a/pkg/tools/get_authors.sh
+++ b/pkg/tools/get_authors.sh
@@ -1,2 +1,11 @@
#!/bin/sh
-git log --format='%aN <%aE>' | awk '{arr[$0]++} END{for (i in arr){print arr[i], i;}}' | sort -rn | cut -d' ' -f2-
+#
+# To de-duplicate dontibutors who committed with different email addresses / names you can link
+# ~/.mailmap to the .mailmap in the `secrets` repo.
+# You need to tell git where to find it:
+#
+# git config --global mailmap.file ~/.mailmap
+#
+# After this just run `./get_authors.sh`.
+
+git log --use-mailmap --format='%aN <%aE>' | awk '{arr[$0]++} END{for (i in arr){print arr[i], i;}}' | sort -rn | cut -d' ' -f2- | sort