# 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
Create a free account and build your private vault. Share publicly whenever you want.