git-find-contacts (210B)
1 #!/usr/bin/env bash 2 if [ -z $1 ]; then 3 printf "usage: git-find-contacts <commit-range>\n" 4 exit 1 5 fi 6 7 ( 8 for hash in $(git log --format=%H "$@") 9 do 10 git-contacts ${hash}^- 11 done 12 ) | sort | uniq -c | sort -nr