mirror of
https://github.com/tendermint/tendermint.git
synced 2026-02-11 14:21:18 +00:00
fix language
This commit is contained in:
@@ -1,15 +1,14 @@
|
||||
#! /bin/bash
|
||||
|
||||
tag=$1
|
||||
ref=$1
|
||||
|
||||
|
||||
if [[ ! -z "$tag" ]]; then
|
||||
git log master..$tag | grep Author | sort | uniq
|
||||
if [[ ! -z "$ref" ]]; then
|
||||
git log master..$ref | grep Author | sort | uniq
|
||||
else
|
||||
cat << EOF
|
||||
Usage:
|
||||
./authors.sh <tag>
|
||||
Print a list of all authors who have committed to develop since the supplied tagged version.
|
||||
./authors.sh <ref>
|
||||
Print a list of all authors who have committed to develop since the supplied commit ref.
|
||||
EOF
|
||||
fi
|
||||
|
||||
|
||||
Reference in New Issue
Block a user