aboutsummaryrefslogtreecommitdiffstats
path: root/t/helper
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2025-06-17 10:44:38 -0700
committerJunio C Hamano <gitster@pobox.com>2025-06-17 10:44:38 -0700
commit88134a8417b1deb6b236e660c6e0547355b180a3 (patch)
tree73576f3a8c6ea5ee66cda30b4d24cb1c9bc5173b /t/helper
parentMerge branch 'lo/my-first-ow-doc-update' (diff)
parentpack-objects: allow --shallow and --path-walk (diff)
downloadgit-88134a8417b1deb6b236e660c6e0547355b180a3.tar.gz
git-88134a8417b1deb6b236e660c6e0547355b180a3.zip
Merge branch 'ds/path-walk-2'
"git pack-objects" learns to find delta bases from blobs at the same path, using the --path-walk API. * ds/path-walk-2: pack-objects: allow --shallow and --path-walk path-walk: add new 'edge_aggressive' option pack-objects: thread the path-based compression pack-objects: refactor path-walk delta phase scalar: enable path-walk during push via config pack-objects: enable --path-walk via config repack: add --path-walk option t5538: add tests to confirm deltas in shallow pushes pack-objects: introduce GIT_TEST_PACK_PATH_WALK p5313: add performance tests for --path-walk pack-objects: update usage to match docs pack-objects: add --path-walk option pack-objects: extract should_attempt_deltas()
Diffstat (limited to 't/helper')
-rw-r--r--t/helper/test-path-walk.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/t/helper/test-path-walk.c b/t/helper/test-path-walk.c
index 61e845e5ec..fe63002c2b 100644
--- a/t/helper/test-path-walk.c
+++ b/t/helper/test-path-walk.c
@@ -82,6 +82,8 @@ int cmd__path_walk(int argc, const char **argv)
N_("toggle inclusion of tree objects")),
OPT_BOOL(0, "prune", &info.prune_all_uninteresting,
N_("toggle pruning of uninteresting paths")),
+ OPT_BOOL(0, "edge-aggressive", &info.edge_aggressive,
+ N_("toggle aggressive edge walk")),
OPT_BOOL(0, "stdin-pl", &stdin_pl,
N_("read a pattern list over stdin")),
OPT_END(),