pack-objects: flip the use of GIT_TEST_PACK_SPARSE
commit2d657ab95fd5be5ebeee43fecec3d7cd94fdd2e4
authorDerrick Stolee <dstolee@microsoft.com>
Fri, 20 Mar 2020 12:38:10 +0000 (20 12:38 +0000)
committerJunio C Hamano <gitster@pobox.com>
Fri, 20 Mar 2020 21:22:32 +0000 (20 14:22 -0700)
tree5e6268f9aa9298c660360d2467393b7c2596ba0f
parentde3a864114291632c05e67bec4a316257c7ff97d
pack-objects: flip the use of GIT_TEST_PACK_SPARSE

The environment variable GIT_TEST_PACK_SPARSE was previously used
to allow testing the --sparse option for "git pack-objects" in
the test suite. This allowed interesting cases of "git push" to
also test this algorithm.

Since pack.useSparse is now true by default, we do not need this
variable to _enable_ the --sparse option, but instead to _disable_
it. This flips how we work with the variable a bit.

When checking for the variable, default to a value of -1 for
"unset". If unset, then take the default from the repo settings,
which is currently 1. Then, the --[no-]sparse command-line option
will override either of these settings.

Signed-off-by: Derrick Stolee <dstolee@microsoft.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/pack-objects.c
t/README
t/t5322-pack-objects-sparse.sh