Created
April 4, 2017 04:49
-
-
Save microo8/596610b66b1e8c015e4fca9e4bb144ed to your computer and use it in GitHub Desktop.
snipet to create an alias that will print out 10 most edited files in an git repository
This file contains 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
alias gitmost="git log --since=\"120 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