How can I show files in Git which change most often?
For powershell, assuming you got git bash installed
git log --pretty=format: --name-only | sort | uniq -c | sort -Descending | select -First 10