Files
tendermint/scripts/authors.sh
William Banfield 42556b7334 fix language
2021-10-04 13:40:10 -04:00

15 lines
247 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 the codebase since the supplied commit ref.
EOF
fi