mirror of
https://github.com/tendermint/tendermint.git
synced 2026-01-03 11:45:18 +00:00
This script is referenced from the release documentation, we should make sure it's functional. This is helpful in generating the "Special Thanks" section of the changelog.
17 lines
266 B
Bash
Executable File
17 lines
266 B
Bash
Executable File
#! /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
|
|
|