nix/modules/home-manager/scripts/common/bin/git-authors
2023-10-05 13:43:28 -05:00

9 lines
178 B
Bash
Executable file

#!/usr/bin/env bash
git ls-tree -r -z --name-only HEAD -- "$1" \
| xargs -0 -n1 git blame --line-porcelain HEAD \
| grep "^author " \
| sort \
| uniq -c \
| sort -nr