Skip to content

Instantly share code, notes, and snippets.

View RickyRoller's full-sized avatar

Ricky Roller RickyRoller

View GitHub Profile
git log --shortstat --author "AUTHOR NAME" --since "2015-01-01" --until "today" | grep "files\? changed" | awk '{files+=$1; inserted+=$4; deleted+=$6} END {print "files changed:", files, "lines inserted:", inserted, "lines deleted:", deleted}'