aboutsummaryrefslogtreecommitdiff
path: root/contrib/examples
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2008-01-17 22:52:40 -0800
committerJunio C Hamano <gitster@pobox.com>2008-01-17 22:52:40 -0800
commit5c66d0d4580196094e80c552f141525759a8e249 (patch)
tree4e5015744ad17f3e5b99f654aeebfac11769b6ce /contrib/examples
parentc9ced051c3afa6f3da7f59b0dcb92787b2b5c702 (diff)
downloadgit-5c66d0d4580196094e80c552f141525759a8e249.tar.gz
git-5c66d0d4580196094e80c552f141525759a8e249.tar.xz
Officially deprecate repo-config.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'contrib/examples')
-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 ae7c53166..e9f3a228a 100755
--- a/contrib/examples/git-tag.sh
+++ b/contrib/examples/git-tag.sh
@@ -167,7 +167,7 @@ type=$(git cat-file -t $object) || exit 1
tagger=$(git-var GIT_COMMITTER_IDENT) || exit 1
test -n "$username" ||
- username=$(git repo-config user.signingkey) ||
+ username=$(git config user.signingkey) ||
username=$(expr "z$tagger" : 'z\(.*>\)')
trap 'rm -f "$GIT_DIR"/TAG_TMP* "$GIT_DIR"/TAG_FINALMSG "$GIT_DIR"/TAG_EDITMSG' 0