3 lines
101 B
Bash
Executable File
3 lines
101 B
Bash
Executable File
#!/bin/sh
|
|
git log --pretty="format:%an %ae" | sort | uniq -c | sort -n -r | sed -e 's/^ *[0-9]* //g'
|