https://github.com/tendermint/tendermint
Raw File
Tip revision: 28b67a0f0815fd667f747e84b48156cb07b494b5 authored by William Banfield on 02 May 2022, 22:47:53 UTC
minor fixups
Tip revision: 28b67a0
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