This commit is contained in:
Tobias Schmidl 2014-10-06 16:57:56 +02:00
parent a95d89981e
commit 46beb4ebf6

View file

@ -1,2 +1,3 @@
#! /bin/sh
# greps all authors and presents them in descending commit order
git log --all --format='%aN <%aE>' | awk '{arr[$0]++} END{for (i in arr){print arr[i], i;}}' | sort -rn;