Created
June 21, 2018 01:28
-
-
Save ranjitiyer/a46fdbf854a015c20ee37104c442322b to your computer and use it in GitHub Desktop.
Find important files in a project by looking at historic commits
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 --oneline | awk '{print $1}' | xargs git show | grep "diff" | awk '{print $3}' | sort | uniq -c | sort -nr | more |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment