Created
April 13, 2018 17:15
-
-
Save valtoni/48c5f9c29094dcc56c79e20e4e0833bd to your computer and use it in GitHub Desktop.
Show the top most changed files in git repository
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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