Skip to content

Instantly share code, notes, and snippets.

@cletusw
Last active April 28, 2016 21:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cletusw/6952ef729fbf06c867f6 to your computer and use it in GitHub Desktop.
Save cletusw/6952ef729fbf06c867f6 to your computer and use it in GitHub Desktop.
Most blamed
git blame --line-porcelain -L 300,319 path/to/file.js | sed -n 's/^author //p' | sort | uniq -c | sort -rn | sed -n '1 p' | sed -n 's/^ *[0-9]* //p'
# Or to see all for an entire directory
git log --pretty=format:"%an" -- path/to/dir/ | sort | uniq -c | sort -rn
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment