Skip to content

Instantly share code, notes, and snippets.

@valtoni
Created April 13, 2018 17:15
Show Gist options
  • Save valtoni/48c5f9c29094dcc56c79e20e4e0833bd to your computer and use it in GitHub Desktop.
Save valtoni/48c5f9c29094dcc56c79e20e4e0833bd to your computer and use it in GitHub Desktop.
Show the top most changed files in git repository
git log --name-status $* | grep -E '^[A-Z]\s+' | cut -c3-500 | sort | uniq -c | grep -vE '^ {6}1 ' | sort -n | tail --lines="$ROW_LIMIT"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment