pack-objects: create pack.useSparse setting
The '--sparse' flag in 'git pack-objects' changes the algorithm used to enumerate objects to one that is faster for individual users pushing new objects that change only a small cone of the working directory. The sparse algorithm is not recommended for a server, which likely sends new objects that appear across the entire working directory. Create a 'pack.useSparse' setting that enables this new algorithm. This allows 'git push' to use this algorithm without passing a '--sparse' flag all the way through four levels of run_command() calls. If the '--no-sparse' flag is set, then this config setting is overridden. Signed-off-by: Derrick Stolee <dstolee@microsoft.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:

committed by
Junio C Hamano

parent
d5d2e93577
commit
3d036eb0d2
@ -118,4 +118,19 @@ test_expect_success 'sparse pack-objects' '
|
||||
test_cmp expect_sparse_objects.txt sparse_objects.txt
|
||||
'
|
||||
|
||||
test_expect_success 'pack.useSparse enables algorithm' '
|
||||
git config pack.useSparse true &&
|
||||
git pack-objects --stdout --revs <packinput.txt >sparse.pack &&
|
||||
git index-pack -o sparse.idx sparse.pack &&
|
||||
git show-index <sparse.idx | awk "{print \$2}" >sparse_objects.txt &&
|
||||
test_cmp expect_sparse_objects.txt sparse_objects.txt
|
||||
'
|
||||
|
||||
test_expect_success 'pack.useSparse overridden' '
|
||||
git pack-objects --stdout --revs --no-sparse <packinput.txt >sparse.pack &&
|
||||
git index-pack -o sparse.idx sparse.pack &&
|
||||
git show-index <sparse.idx | awk "{print \$2}" >sparse_objects.txt &&
|
||||
test_cmp required_objects.txt sparse_objects.txt
|
||||
'
|
||||
|
||||
test_done
|
||||
|
Reference in New Issue
Block a user