https://github.com/tendermint/tendermint
Raw File
Tip revision: a8bdd357f8d7d09ce0542ad070a468d08584a052 authored by William Banfield on 26 January 2022, 19:05:24 UTC
params: increase default synchrony params
Tip revision: a8bdd35
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