Really useful git commands
List the most-frequently-updated files over the past year
git log --since="1 year ago" --pretty=format: --name-only | sort | uniq -c | sort -rn | head -10Useful for seeing hotspots in a codebase.
git log --since="1 year ago" --pretty=format: --name-only | sort | uniq -c | sort -rn | head -10Useful for seeing hotspots in a codebase.