How can I show files in Git which change most often?
git whatchanged --all | \grep "\.\.\." | cut -d' ' -f5- | cut -f2- | sort | uniq -c | sort
If you only want to see your files add --author to git whatchanged --author=name --all.
--author
git whatchanged --author=name --all