NOTE

Really useful git commands

#git (1)#tooling (2)

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.

Terminal window
git log --since="1 year ago" --pretty=format: --name-only | sort | uniq -c | sort -rn | head -10