mirror of https://github.com/sgoudham/Enso-Bot.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
6 lines
203 B
Bash
6 lines
203 B
Bash
5 years ago
|
#!/bin/bash
|
||
|
|
||
|
# 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 -w \
|
||
|
--line-porcelain HEAD |grep "^author "|sort|uniq -c|sort -nr
|