t: drop useless sane_unset GIT_* calls
commit221bf985063737240124fe15c328cd125e9d048e
authorJeff King <peff@peff.net>
Thu, 20 Mar 2014 23:14:33 +0000 (20 19:14 -0400)
committerJunio C Hamano <gitster@pobox.com>
Fri, 21 Mar 2014 21:11:11 +0000 (21 14:11 -0700)
treedda8ea5eb3b7418e5903cfc58954e121f6e4d6aa
parent35de3ac1db323976b88949839ff8b2135513e257
t: drop useless sane_unset GIT_* calls

Several test scripts manually unset GIT_CONFIG and other
GIT_* variables. These are generally taken care of for us by
test-lib.sh already.

Unsetting these is not only useless, but can be confusing to
a reader, who may wonder why some tests in a script unset
them and others do not (t0001 is particularly guilty of this
inconsistency, probably because many of its tests predate
the test-lib.sh environment-cleansing).

Note that we cannot always get rid of such unsetting. For
example, t9130 can drop the GIT_CONFIG unset, but not the
GIT_DIR one, because lib-git-svn.sh sets the latter. And in
t1000, we unset GIT_TEMPLATE_DIR, which is explicitly
initialized by test-lib.sh.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t0001-init.sh
t/t9130-git-svn-authors-file.sh
t/t9400-git-cvsserver-server.sh