Skip to content

Instantly share code, notes, and snippets.

@gernotstarke
Created October 22, 2015 16:25
Show Gist options
  • Save gernotstarke/a27494c81b5b4862b5eb to your computer and use it in GitHub Desktop.
Save gernotstarke/a27494c81b5b4862b5eb to your computer and use it in GitHub Desktop.
find heavily changed files in git repository
git log --since="90 days ago" --pretty=format:"" --name-only | \
grep "[^\s]" | \
sort | uniq -c | \
sort -nr | head -10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment