https://github.com/tendermint/tendermint
Raw File
Tip revision: 542ad92bf7089903520a8d3c7ce14b1ea99e80d7 authored by tycho garen on 21 October 2021, 12:53:40 UTC
don't wait for light clients
Tip revision: 542ad92
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