Skip to content

Instantly share code, notes, and snippets.

@yungztrunks
Created March 17, 2025 10:27
Show Gist options
  • Save yungztrunks/881c02a7bcead53f09dbfcc5092025c3 to your computer and use it in GitHub Desktop.
Save yungztrunks/881c02a7bcead53f09dbfcc5092025c3 to your computer and use it in GitHub Desktop.
git repo code leaderboard

leaderboard of who wrote the most lines of code in a git repo

git ls-tree --name-only -z -r HEAD | xargs -0 -n1 git blame --line-porcelain | grep "^author " | sort | uniq -c | sort -nr

the below can be used to filter by file extension

git ls-tree --name-only -z -r HEAD|egrep -z -Z -E '\.(cc|h|cpp|hpp|c|txt)$' \ |xargs -0 -n1 git blame --line-porcelain | grep "^author " | sort | uniq -c | sort -nr
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment