Obtenha a lista de contribuidores para o repositório:
git log --format='%aN' | sort -u
Exibir estatísticas de adição / exclusão por autor:
git log --shortstat --author="Marcin Olichwirowicz" | grep -E "fil(e|es) changed" | awk '{files+=$1; inserted+=$4; deleted+=$6} END {print "files changed: ", files, "lines inserted: ", inserted, "lines deleted: ", deleted }'
Você pode filtrá-lo adicionando –until ou –since
git log --shortstat --author="Marcin Olichwirowicz" --since="1 Jan, 2013" | grep...
Se você quiser apenas alguns commits, pode usar:
git shortlog -sn