Really useful git commands
I’m sure Claude could make this list again and again. But I keep asking for these same ones so here they are for posterity.
List the most frequently-updated files over the last year
Useful for seeing hotspots in a codebase.
git log --since="1 year ago" --pretty=format: --name-only | sort | uniq -c | sort -rn | head -10