8 lines
201 B
Bash
Executable file
8 lines
201 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# List authors in the repository.
|
|
#
|
|
exec git shortlog --email --numbered --summary "$@" \
|
|
| awk '{$1=""; sub(" ", ""); print}' \
|
|
| awk -F'<' '!seen[$1]++' \
|
|
| awk -F'<' '!seen[$2]++'
|