2025年5月31日 05:50,Eric Sunshine [off-list ref] 写道:
On Fri, May 30, 2025 at 5:42 PM Junio C Hamano [off-list ref] wrote:
quoted
"Lidong Yan via GitGitGadget" [off-list ref] writes:
quoted
+ export GIT_TEST_PACK_USE_BITMAP_BOUNDARY_TRAVERSAL=1 &&
The test linter complains on this line for me, it seems.
To provide a bit more context:
% (cd t && make test-lint-shell-syntax)
Thanks, I should run this before submit.
tells you that `export FOO=bar` is not portable and that it should
instead be written as:
FOO=bar &&
export FOO &&