diff options
author | Jeff King <peff@peff.net> | 2011-02-24 09:30:30 -0500 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-03-08 12:12:04 -0800 |
commit | 7e2342d0987f7f78bc8582e97bbfbafd80d327ef (patch) | |
tree | 06e7af5004f763ee8b64879d83d5dc1e514fb24f /t/t1510-repo-setup.sh | |
parent | bbc30f996380eacd71ca061675d5d0c5f21c45d2 (diff) | |
download | git-7e2342d0987f7f78bc8582e97bbfbafd80d327ef.tar.gz |
trace: give repo_setup trace its own key
You no longer get this output with GIT_TRACE=1; instead, you
can do GIT_TRACE_SETUP=1.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t1510-repo-setup.sh')
-rwxr-xr-x | t/t1510-repo-setup.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t1510-repo-setup.sh b/t/t1510-repo-setup.sh index 15101d5e03..ec50a9ad70 100755 --- a/t/t1510-repo-setup.sh +++ b/t/t1510-repo-setup.sh @@ -57,7 +57,7 @@ test_repo () { export GIT_WORK_TREE fi && rm -f trace && - GIT_TRACE="$(pwd)/trace" git symbolic-ref HEAD >/dev/null && + GIT_TRACE_SETUP="$(pwd)/trace" git symbolic-ref HEAD >/dev/null && grep '^setup: ' trace >result && test_cmp expected result ) |