diff options
author | Junio C Hamano <gitster@pobox.com> | 2008-01-17 22:52:40 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-01-17 22:52:40 -0800 |
commit | 5c66d0d4580196094e80c552f141525759a8e249 (patch) | |
tree | 4e5015744ad17f3e5b99f654aeebfac11769b6ce /contrib/examples | |
parent | Fix random fast-import errors when compiled with NO_MMAP (diff) | |
download | tgif-5c66d0d4580196094e80c552f141525759a8e249.tar.xz |
Officially deprecate repo-config.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'contrib/examples')
-rwxr-xr-x | contrib/examples/git-tag.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/examples/git-tag.sh b/contrib/examples/git-tag.sh index ae7c531666..e9f3a228af 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 |