mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-01 01:35:59 +01:00
8 lines
104 B
Bash
8 lines
104 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
git shortlog -s |\
|
||
|
cut -f2- |\
|
||
|
grep -v '(no author)' |\
|
||
|
grep '\w \w.*' |\
|
||
|
sort
|