Jonathan Tan <jonathantanmy@xxxxxxxxxx> writes: > diff --git a/t/t5700-protocol-v1.sh b/t/t5700-protocol-v1.sh > index 22459d37f5..4ee29c1be0 100755 > --- a/t/t5700-protocol-v1.sh > +++ b/t/t5700-protocol-v1.sh > ... > + # Push to another branch, as the target repository has the > + # master branch checked out and we cannot push into it. > + GIT_TRACE_PACKET=1 test_might_fail git -C http_child -c protocol.version=1 \ > + push --base=three origin HEAD:client_branch_four 2>log && This attempt to one-shot export GIT_TRACE_PACKET is flagged as an error by test-lint-shell-syntax. test_might_fail env GIT_TRACE_PACKET=1 \ git -C ... push --base=three ... && perhaps?