aboutsummaryrefslogtreecommitdiff
path: root/builtin/backfill.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2026-04-07 14:59:28 -0700
committerJunio C Hamano <gitster@pobox.com>2026-04-07 14:59:28 -0700
commitf1743ad69a492d1ca3773bfdddf7f5ffd278c19b (patch)
tree222ad49ff701cc4f8753e854c8f37bb893763029 /builtin/backfill.c
parentb66c97cc644ca3a3f42283cfc575fd9709f30835 (diff)
parent339eba65a7f8aa596199e04f45683c48a1562b9c (diff)
downloadgit-f1743ad69a492d1ca3773bfdddf7f5ffd278c19b.tar.xz
Merge branch 'th/backfill-auto-detect-sparseness-fix'
"git backfill" is capable of auto-detecting a sparsely checked out working tree, which was broken. * th/backfill-auto-detect-sparseness-fix: backfill: auto-detect sparse-checkout from config
Diffstat (limited to 'builtin/backfill.c')
-rw-r--r--builtin/backfill.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/backfill.c b/builtin/backfill.c
index 2c5ce56fb7..d794dd842f 100644
--- a/builtin/backfill.c
+++ b/builtin/backfill.c
@@ -119,7 +119,7 @@ int cmd_backfill(int argc, const char **argv, const char *prefix, struct reposit
.repo = repo,
.current_batch = OID_ARRAY_INIT,
.min_batch_size = 50000,
- .sparse = 0,
+ .sparse = -1,
.revs = REV_INFO_INIT,
};
struct option options[] = {