Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ranjitiyer/a46fdbf854a015c20ee37104c442322b to your computer and use it in GitHub Desktop.
Save ranjitiyer/a46fdbf854a015c20ee37104c442322b to your computer and use it in GitHub Desktop.
Find important files in a project by looking at historic commits
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