https://github.com/tendermint/tendermint
Raw File
Tip revision: ae1488f592e0867099947cb1cf14ba69c6ac9f4f authored by William Banfield on 03 February 2022, 19:39:07 UTC
Update docs/architecture/adr-071-proposer-based-timestamps.md
Tip revision: ae1488f
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