diff options
author | Junio C Hamano <gitster@pobox.com> | 2019-02-06 22:05:24 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-02-06 22:05:25 -0800 |
commit | 5fda343321f36384892061b21dcbe1d477145d2c (patch) | |
tree | 3bc2ed0d898f0c4768529f5ecc9f5ec58dee9e49 /t/README | |
parent | Merge branch 'tb/test-lint-sed-options' (diff) | |
parent | pack-objects: create GIT_TEST_PACK_SPARSE (diff) | |
download | tgif-5fda343321f36384892061b21dcbe1d477145d2c.tar.xz |
Merge branch 'ds/push-sparse-tree-walk'
"git pack-objects" learned another algorithm to compute the set of
objects to send, that trades the resulting packfile off to save
traversal cost to favor small pushes.
* ds/push-sparse-tree-walk:
pack-objects: create GIT_TEST_PACK_SPARSE
pack-objects: create pack.useSparse setting
revision: implement sparse algorithm
list-objects: consume sparse tree walk
revision: add mark_tree_uninteresting_sparse
Diffstat (limited to 't/README')
-rw-r--r-- | t/README | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -358,6 +358,10 @@ 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_PRELOAD_INDEX=<boolean> exercises the preload-index code path by overriding the minimum number of cache entries required per thread. |