NOTE

Really useful git commands

#git (1)#tooling (2)

List the most-frequently-updated files over the past year

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

Useful for seeing hotspots in a codebase.