diff options
| author | Junio C Hamano <gitster@pobox.com> | 2025-02-18 15:30:31 -0800 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2025-02-18 15:30:31 -0800 |
| commit | e565f3755342caf1d21e22359eaf09ec11d8c0ae (patch) | |
| tree | 5f72183ddfbef4150aabe189127d03248c0e8151 /git.c | |
| parent | 03944513488db4a81fdb4c21c3b515e4cb260b05 (diff) | |
| parent | 85127bcdeab5ab34f9c738da3fcc88d637f39089 (diff) | |
| download | git-e565f3755342caf1d21e22359eaf09ec11d8c0ae.tar.xz | |
Merge branch 'ds/backfill'
Lazy-loading missing files in a blobless clone on demand is costly
as it tends to be one-blob-at-a-time. "git backfill" is introduced
to help bulk-download necessary files beforehand.
* ds/backfill:
backfill: assume --sparse when sparse-checkout is enabled
backfill: add --sparse option
backfill: add --min-batch-size=<n> option
backfill: basic functionality and tests
backfill: add builtin boilerplate
Diffstat (limited to 'git.c')
| -rw-r--r-- | git.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -506,6 +506,7 @@ static struct cmd_struct commands[] = { { "annotate", cmd_annotate, RUN_SETUP }, { "apply", cmd_apply, RUN_SETUP_GENTLY }, { "archive", cmd_archive, RUN_SETUP_GENTLY }, + { "backfill", cmd_backfill, RUN_SETUP }, { "bisect", cmd_bisect, RUN_SETUP }, { "blame", cmd_blame, RUN_SETUP }, { "branch", cmd_branch, RUN_SETUP | DELAY_PAGER_CONFIG }, |
