https://github.com/tendermint/tendermint
Raw File
Tip revision: 714d58ed98ab0e01d3aa8b28f25edbcb7ecd38fc authored by William Banfield on 21 June 2022, 20:50:57 UTC
only call dial waker on errors that should cause new dial
Tip revision: 714d58e
authors.sh
#! /bin/bash

set -euo pipefail

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

back to top