dotfiles/git-author
Tobias Schmidl 46beb4ebf6 update
2014-10-06 16:57:56 +02:00

3 lines
181 B
Bash
Executable file

#! /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;