Skip to content

Instantly share code, notes, and snippets.

@bentona
Created July 29, 2014 18:58
Show Gist options
  • Save bentona/3971e8100853edb48156 to your computer and use it in GitHub Desktop.
Save bentona/3971e8100853edb48156 to your computer and use it in GitHub Desktop.
Determine who is most to blame for files
for i in *; do echo $i && git blame $i --line-porcelain | grep 'author ' | cut -b 8-25 | sort | uniq -c | sort -r | head -n 1; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment