How can I show files in Git which change most often?
We can also find out files changed between two commits or branches, for e.g.
git log --pretty=format: --name-only ... | sort | uniq -c | sort -rg | head -50