dotfiles/git-author

3 lines
116 B
Text
Raw Normal View History

2014-10-06 16:54:23 +02:00
#! /bin/sh
git log --all --format='%aN <%aE>' | awk '{arr[$0]++} END{for (i in arr){print arr[i], i;}}' | sort -rn;