Skip to content

Instantly share code, notes, and snippets.

View smartm13's full-sized avatar
Hopping!

Mihir Parikh smartm13

Hopping!
View GitHub Profile
@shitchell
shitchell / git-user-stats
Last active June 25, 2024 09:03
Show user stats in a git repo
#!/bin/bash
#
# Show user stats (commits, files modified, insertions, deletions, and total
# lines modified) for a repo
git_log_opts=( "$@" )
git log "${git_log_opts[@]}" --format='author: %ae' --numstat \
| tr '[A-Z]' '[a-z]' \
| grep -v '^$' \