aboutsummaryrefslogtreecommitdiff
path: root/scripts/list-authors.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/list-authors.sh')
-rwxr-xr-xscripts/list-authors.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/scripts/list-authors.sh b/scripts/list-authors.sh
new file mode 100755
index 0000000..430d4a9
--- /dev/null
+++ b/scripts/list-authors.sh
@@ -0,0 +1,12 @@
+#!/usr/bin/bash
+
+# git shortlog:
+# -s (--summary): suppress commit description
+# -n (--numbered): sort according to number of commits per author
+# -e (--email): show email address of author
+
+# sed:
+# replace (any spaces)(any numbers)(any spaces) with ' - '
+# this replaces the commit numbers and turns it into a bullet list
+git shortlog -sne $1 | sed -e 's/^\s*[0-9]*\s*/ - /g'
+