# Created on savesnippets.com ยท https://savesnippets.com/5GYTgaXHJZfoo7 # Top 20 most-changed files all-time git log --pretty=format: --name-only \ | grep -v '^$' \ | sort | uniq -c | sort -rn | head -20 # Most-changed files in the last 90 days git log --since="90 days ago" --pretty=format: --name-only \ | grep -v '^$' \ | sort | uniq -c | sort -rn | head -20 # Most-changed files BY a specific author git log --author="Alice" --pretty=format: --name-only \ | grep -v '^$' \ | sort | uniq -c | sort -rn | head