diff options
author | Jeff King <peff@peff.net> | 2014-03-21 00:13:36 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-03-21 22:11:09 +0100 |
commit | 35de3ac1db323976b88949839ff8b2135513e257 (patch) | |
tree | d3daaea6c31eb1ffbd6f76ec27689b7a4f5c4c13 /t/test-lib.sh | |
parent | t/Makefile: stop setting GIT_CONFIG (diff) | |
download | git-35de3ac1db323976b88949839ff8b2135513e257.tar.xz git-35de3ac1db323976b88949839ff8b2135513e257.zip |
t/test-lib: drop redundant unset of GIT_CONFIG
This is already handled by the mass GIT_* unsetting added by
95a1d12 (tests: scrub environment of GIT_* variables,
2011-03-15).
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/test-lib.sh')
-rw-r--r-- | t/test-lib.sh | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/t/test-lib.sh b/t/test-lib.sh index 1531c241c0..625f06e5e5 100644 --- a/t/test-lib.sh +++ b/t/test-lib.sh @@ -649,7 +649,6 @@ else # normal case, use ../bin-wrappers only unless $with_dashes: fi fi GIT_TEMPLATE_DIR="$GIT_BUILD_DIR"/templates/blt -unset GIT_CONFIG GIT_CONFIG_NOSYSTEM=1 GIT_ATTR_NOSYSTEM=1 export PATH GIT_EXEC_PATH GIT_TEMPLATE_DIR GIT_CONFIG_NOSYSTEM GIT_ATTR_NOSYSTEM |