update of git configs

This commit is contained in:
Tobias Schmidl 2016-12-07 17:01:55 +01:00
parent 34e162f851
commit c658f89b56
4 changed files with 52 additions and 41 deletions

View file

@ -1,3 +1,5 @@
#! /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;
#git log --all --format='%aN' | awk '{arr[$0]++} END{for (i in arr){print arr[i], i;}}' | sort -rn;