Created
October 29, 2024 10:47
-
-
Save lloesche/447b09c166a6e13caa566bca297437b0 to your computer and use it in GitHub Desktop.
List of git contributors in `main` branch with line count
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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