Skip to content

Instantly share code, notes, and snippets.

@solova
Created July 22, 2016 13:05
Show Gist options
  • Save solova/4be381c931783d47358e9a13a5e9a251 to your computer and use it in GitHub Desktop.
Save solova/4be381c931783d47358e9a13a5e9a251 to your computer and use it in GitHub Desktop.
Show reporsitory stats
git log --since="7 days ago" --format='%aN' | sort -u | while read name; do echo -en "$name\t"; git log --since="7 days ago" --author="$name" --pretty=tformat: --numstat | awk
'{ add += $1; subs += $2; loc += $1 - $2 } END { printf "added lines: %s, removed lines: %s, total lines: %s\n", add, subs, loc }' -; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment