diff options
author | Junio C Hamano <gitster@pobox.com> | 2020-03-29 09:32:51 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-03-29 09:32:51 -0700 |
commit | 9fadedd637b312089337d73c3ed8447e9f0aa775 (patch) | |
tree | 7c3c7fd874855d7bddd25a62495c8b921cc09274 /t/README | |
parent | The second batch post 2.26 cycle (diff) | |
parent | pack-objects: flip the use of GIT_TEST_PACK_SPARSE (diff) | |
download | tgif-9fadedd637b312089337d73c3ed8447e9f0aa775.tar.xz |
Merge branch 'ds/default-pack-use-sparse-to-true'
The 'pack.useSparse' configuration variable now defaults to 'true',
enabling an optimization that has been experimental since Git 2.21.
* ds/default-pack-use-sparse-to-true:
pack-objects: flip the use of GIT_TEST_PACK_SPARSE
config: set pack.useSparse=true by default
Diffstat (limited to 't/README')
-rw-r--r-- | t/README | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -386,9 +386,9 @@ GIT_TEST_INDEX_VERSION=<n> exercises the index read/write code path for the index version specified. Can be set to any valid version (currently 2, 3, or 4). -GIT_TEST_PACK_SPARSE=<boolean> if enabled will default the pack-objects -builtin to use the sparse object walk. This can still be overridden by -the --no-sparse command-line argument. +GIT_TEST_PACK_SPARSE=<boolean> if disabled will default the pack-objects +builtin to use the non-sparse object walk. This can still be overridden by +the --sparse command-line argument. GIT_TEST_PRELOAD_INDEX=<boolean> exercises the preload-index code path by overriding the minimum number of cache entries required per thread. |