Revision d0a39c267aae8caf0d4fb74370095cdf9ed2319a authored by William Banfield on 02 December 2021, 21:06:04 UTC, committed by William Banfield on 02 December 2021, 21:06:04 UTC
1 parent 45b78fb
Raw File
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