diff options
author | Jeff King <peff@peff.net> | 2015-03-13 00:51:15 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-03-12 23:25:06 -0700 |
commit | 89c57ab3f0168b192d5ccc159972fdb26e0ba80b (patch) | |
tree | 233dc2aae54fc3f8ee7a0eb2b9b910f27e712d74 /t/lib-httpd/apache.conf | |
parent | t: redirect stderr GIT_TRACE to descriptor 4 (diff) | |
download | tgif-89c57ab3f0168b192d5ccc159972fdb26e0ba80b.tar.xz |
t: pass GIT_TRACE through Apache
Apache removes GIT_TRACE from the environment before running
git-http-backend. This can make it hard to debug the server
side of an http session. Let's let it through.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/lib-httpd/apache.conf')
-rw-r--r-- | t/lib-httpd/apache.conf | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/t/lib-httpd/apache.conf b/t/lib-httpd/apache.conf index 03a4c2ee84..0b81a0047b 100644 --- a/t/lib-httpd/apache.conf +++ b/t/lib-httpd/apache.conf @@ -70,6 +70,7 @@ PassEnv GIT_VALGRIND PassEnv GIT_VALGRIND_OPTIONS PassEnv GNUPGHOME PassEnv ASAN_OPTIONS +PassEnv GIT_TRACE Alias /dumb/ www/ Alias /auth/dumb/ www/auth/dumb/ |