mirror of
https://github.com/tendermint/tendermint.git
synced 2026-02-11 06:11:07 +00:00
15 lines
242 B
Bash
Executable File
15 lines
242 B
Bash
Executable File
#! /bin/bash
|
|
|
|
ref=$1
|
|
|
|
if [[ ! -z "$ref" ]]; then
|
|
git log master..$ref | grep Author | sort | uniq
|
|
else
|
|
cat << EOF
|
|
Usage:
|
|
./authors.sh <ref>
|
|
Print a list of all authors who have committed to develop since the supplied commit ref.
|
|
EOF
|
|
fi
|
|
|