Skip to content

Instantly share code, notes, and snippets.

View ChrisWiegman's full-sized avatar

Chris Wiegman ChrisWiegman

View GitHub Profile
@shitchell
shitchell / git-user-stats
Last active April 17, 2026 21:00
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 '^$' \
@eddiewebb
eddiewebb / readme.md
Last active January 12, 2026 06:31
Hugo JS Searching with Fuse.js