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