summaryrefslogtreecommitdiff
path: root/contrib/examples/git-tag.sh
diff options
context:
space:
mode:
authorTodd Zullinger <tmz@pobox.com>2008-07-30 17:48:33 (GMT)
committerJunio C Hamano <gitster@pobox.com>2008-07-30 18:42:01 (GMT)
commit5354a56fe70420c147f930e0f7f1decbae685d19 (patch)
treebbff775593fd38a42f46825e47b66ce1f898e78f /contrib/examples/git-tag.sh
parent9b6bf4d575e216db9240907940e9f6c619877735 (diff)
downloadgit-5354a56fe70420c147f930e0f7f1decbae685d19.zip
git-5354a56fe70420c147f930e0f7f1decbae685d19.tar.gz
git-5354a56fe70420c147f930e0f7f1decbae685d19.tar.bz2
Replace uses of "git-var" with "git var"
Signed-off-by: Todd Zullinger <tmz@pobox.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'contrib/examples/git-tag.sh')
-rwxr-xr-xcontrib/examples/git-tag.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/examples/git-tag.sh b/contrib/examples/git-tag.sh
index e9f3a22..2c15bc9 100755
--- a/contrib/examples/git-tag.sh
+++ b/contrib/examples/git-tag.sh
@@ -164,7 +164,7 @@ git check-ref-format "tags/$name" ||
object=$(git rev-parse --verify --default HEAD "$@") || exit 1
type=$(git cat-file -t $object) || exit 1
-tagger=$(git-var GIT_COMMITTER_IDENT) || exit 1
+tagger=$(git var GIT_COMMITTER_IDENT) || exit 1
test -n "$username" ||
username=$(git config user.signingkey) ||