From 46beb4ebf6798aef9b88990ba2d849d08213e500 Mon Sep 17 00:00:00 2001 From: Tobias Schmidl Date: Mon, 6 Oct 2014 16:57:56 +0200 Subject: [PATCH] update --- git-author | 1 + 1 file changed, 1 insertion(+) diff --git a/git-author b/git-author index 9e5ec20..7ccbfd5 100755 --- a/git-author +++ b/git-author @@ -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;