Skip to content

Instantly share code, notes, and snippets.

@zettca
Last active May 20, 2020 18:46
Show Gist options
  • Save zettca/a6f59af72e82b5c6827f486abbc70e6a to your computer and use it in GitHub Desktop.
Save zettca/a6f59af72e82b5c6827f486abbc70e6a to your computer and use it in GitHub Desktop.
find who owns (last touched) the most files in a repo
git ls-files | while read f; do git log -n 1 -- "$f" | grep -I '^Author: '; done | sort -f | uniq -c | sort -nr
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment