Identifying Top Contributors in Git Repositories
To identify the developers who’ve contributed the most commits to a repository, use git log with some text processing: git log –format=’%aN’ | sort | uniq -c | sort -rn This returns a sorted list with commit counts and author names: 247 Paul Phillips 45 Dale Wijnand 12 Yamashita Yuu 10 Gilles Cornu 8 Josh…
