On Fri, May 30, 2025 at 5:42 PM Junio C Hamano <gitster@xxxxxxxxx> wrote: > "Lidong Yan via GitGitGadget" <gitgitgadget@xxxxxxxxx> writes: > > + 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) tells you that `export FOO=bar` is not portable and that it should instead be written as: FOO=bar && export FOO &&