Skip to content

Instantly share code, notes, and snippets.

@lloesche
Created October 29, 2024 10:47
Show Gist options
  • Save lloesche/447b09c166a6e13caa566bca297437b0 to your computer and use it in GitHub Desktop.
Save lloesche/447b09c166a6e13caa566bca297437b0 to your computer and use it in GitHub Desktop.
List of git contributors in `main` branch with line count
#!/bin/sh
for file in $(git ls-tree -r main --name-only); do git grep -I '^' -- "$file" >/dev/null && git blame --line-porcelain main -- "$file" | grep '^author ' | sed 's/^author //'; done | sort | uniq -c | sort -n
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment