From: Junio C Hamano Date: Mon, 10 Oct 2005 02:13:47 +0000 (-0700) Subject: git-tag: update usage string and documentation. X-Git-Tag: v0.99.8c~1^2 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=fb8024b414b417d85ce215eba3dd23c188500c15;p=git.git git-tag: update usage string and documentation. Signed-off-by: Junio C Hamano --- diff --git a/Documentation/git-tag.txt b/Documentation/git-tag.txt index 1e0d4f5f4..e11f51c26 100644 --- a/Documentation/git-tag.txt +++ b/Documentation/git-tag.txt @@ -1,16 +1,14 @@ git-tag(1) ========== -v0.99.4, Aug 2005 NAME ---- git-tag - Create a tag object signed with GPG - SYNOPSIS -------- -'git-tag' [-s | -a] [-f] +'git-tag' [-a | -s] [-f] [-m ] [] DESCRIPTION ----------- diff --git a/git-tag.sh b/git-tag.sh index 76c1bcd8c..400bdb984 100755 --- a/git-tag.sh +++ b/git-tag.sh @@ -4,7 +4,7 @@ . git-sh-setup || die "Not a git archive" usage () { - echo >&2 "Usage: git-tag [-a | -s] [-f] [-m "tag message"] tagname" + echo >&2 "Usage: git-tag [-a | -s] [-f] [-m "tag message"] tagname [head]" exit 1 }