mirror of
https://github.com/Stunkymonkey/dotfiles.git
synced 2025-05-24 19:14:39 +02:00
10 lines
227 B
Bash
Executable file
10 lines
227 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# save as i.e.: git-authors and set the executable flag
|
|
git ls-tree -r -z --name-only HEAD -- "${1}" \
|
|
| xargs -0 -n1 git blame --line-porcelain HEAD \
|
|
| grep "^author " \
|
|
| sort \
|
|
| uniq -c \
|
|
| sort -nr
|
|
|