Merge branch 'tb/commit-graph-genv2-upgrade-fix' into maint
[git/debian.git] / builtin / sparse-checkout.c
blobf91e29b56a97eea0f8814a0bfcca45c512a3ab06
1 #include "builtin.h"
2 #include "cache.h"
3 #include "config.h"
4 #include "dir.h"
5 #include "parse-options.h"
6 #include "pathspec.h"
7 #include "repository.h"
8 #include "run-command.h"
9 #include "strbuf.h"
10 #include "string-list.h"
11 #include "cache-tree.h"
12 #include "lockfile.h"
13 #include "resolve-undo.h"
14 #include "unpack-trees.h"
15 #include "wt-status.h"
16 #include "quote.h"
17 #include "sparse-index.h"
18 #include "worktree.h"
20 static const char *empty_base = "";
22 static char const * const builtin_sparse_checkout_usage[] = {
23 N_("git sparse-checkout (init|list|set|add|reapply|disable) <options>"),
24 NULL
27 static void write_patterns_to_file(FILE *fp, struct pattern_list *pl)
29 int i;
31 for (i = 0; i < pl->nr; i++) {
32 struct path_pattern *p = pl->patterns[i];
34 if (p->flags & PATTERN_FLAG_NEGATIVE)
35 fprintf(fp, "!");
37 fprintf(fp, "%s", p->pattern);
39 if (p->flags & PATTERN_FLAG_MUSTBEDIR)
40 fprintf(fp, "/");
42 fprintf(fp, "\n");
46 static char const * const builtin_sparse_checkout_list_usage[] = {
47 "git sparse-checkout list",
48 NULL
51 static int sparse_checkout_list(int argc, const char **argv)
53 static struct option builtin_sparse_checkout_list_options[] = {
54 OPT_END(),
56 struct pattern_list pl;
57 char *sparse_filename;
58 int res;
60 if (!core_apply_sparse_checkout)
61 die(_("this worktree is not sparse"));
63 argc = parse_options(argc, argv, NULL,
64 builtin_sparse_checkout_list_options,
65 builtin_sparse_checkout_list_usage, 0);
67 memset(&pl, 0, sizeof(pl));
69 pl.use_cone_patterns = core_sparse_checkout_cone;
71 sparse_filename = get_sparse_checkout_filename();
72 res = add_patterns_from_file_to_list(sparse_filename, "", 0, &pl, NULL, 0);
73 free(sparse_filename);
75 if (res < 0) {
76 warning(_("this worktree is not sparse (sparse-checkout file may not exist)"));
77 return 0;
80 if (pl.use_cone_patterns) {
81 int i;
82 struct pattern_entry *pe;
83 struct hashmap_iter iter;
84 struct string_list sl = STRING_LIST_INIT_DUP;
86 hashmap_for_each_entry(&pl.recursive_hashmap, &iter, pe, ent) {
87 /* pe->pattern starts with "/", skip it */
88 string_list_insert(&sl, pe->pattern + 1);
91 string_list_sort(&sl);
93 for (i = 0; i < sl.nr; i++) {
94 quote_c_style(sl.items[i].string, NULL, stdout, 0);
95 printf("\n");
98 return 0;
101 write_patterns_to_file(stdout, &pl);
102 clear_pattern_list(&pl);
104 return 0;
107 static void clean_tracked_sparse_directories(struct repository *r)
109 int i, was_full = 0;
110 struct strbuf path = STRBUF_INIT;
111 size_t pathlen;
112 struct string_list_item *item;
113 struct string_list sparse_dirs = STRING_LIST_INIT_DUP;
116 * If we are not using cone mode patterns, then we cannot
117 * delete directories outside of the sparse cone.
119 if (!r || !r->index || !r->worktree)
120 return;
121 if (init_sparse_checkout_patterns(r->index) ||
122 !r->index->sparse_checkout_patterns->use_cone_patterns)
123 return;
126 * Use the sparse index as a data structure to assist finding
127 * directories that are safe to delete. This conversion to a
128 * sparse index will not delete directories that contain
129 * conflicted entries or submodules.
131 if (r->index->sparse_index == INDEX_EXPANDED) {
133 * If something, such as a merge conflict or other concern,
134 * prevents us from converting to a sparse index, then do
135 * not try deleting files.
137 if (convert_to_sparse(r->index, SPARSE_INDEX_MEMORY_ONLY))
138 return;
139 was_full = 1;
142 strbuf_addstr(&path, r->worktree);
143 strbuf_complete(&path, '/');
144 pathlen = path.len;
147 * Collect directories that have gone out of scope but also
148 * exist on disk, so there is some work to be done. We need to
149 * store the entries in a list before exploring, since that might
150 * expand the sparse-index again.
152 for (i = 0; i < r->index->cache_nr; i++) {
153 struct cache_entry *ce = r->index->cache[i];
155 if (S_ISSPARSEDIR(ce->ce_mode) &&
156 repo_file_exists(r, ce->name))
157 string_list_append(&sparse_dirs, ce->name);
160 for_each_string_list_item(item, &sparse_dirs) {
161 struct dir_struct dir = DIR_INIT;
162 struct pathspec p = { 0 };
163 struct strvec s = STRVEC_INIT;
165 strbuf_setlen(&path, pathlen);
166 strbuf_addstr(&path, item->string);
168 dir.flags |= DIR_SHOW_IGNORED_TOO;
170 setup_standard_excludes(&dir);
171 strvec_push(&s, path.buf);
173 parse_pathspec(&p, PATHSPEC_GLOB, 0, NULL, s.v);
174 fill_directory(&dir, r->index, &p);
176 if (dir.nr) {
177 warning(_("directory '%s' contains untracked files,"
178 " but is not in the sparse-checkout cone"),
179 item->string);
180 } else if (remove_dir_recursively(&path, 0)) {
182 * Removal is "best effort". If something blocks
183 * the deletion, then continue with a warning.
185 warning(_("failed to remove directory '%s'"),
186 item->string);
189 strvec_clear(&s);
190 clear_pathspec(&p);
191 dir_clear(&dir);
194 string_list_clear(&sparse_dirs, 0);
195 strbuf_release(&path);
197 if (was_full)
198 ensure_full_index(r->index);
201 static int update_working_directory(struct pattern_list *pl)
203 enum update_sparsity_result result;
204 struct unpack_trees_options o;
205 struct lock_file lock_file = LOCK_INIT;
206 struct repository *r = the_repository;
208 /* If no branch has been checked out, there are no updates to make. */
209 if (is_index_unborn(r->index))
210 return UPDATE_SPARSITY_SUCCESS;
212 r->index->sparse_checkout_patterns = pl;
214 memset(&o, 0, sizeof(o));
215 o.verbose_update = isatty(2);
216 o.update = 1;
217 o.head_idx = -1;
218 o.src_index = r->index;
219 o.dst_index = r->index;
220 o.skip_sparse_checkout = 0;
221 o.pl = pl;
223 setup_work_tree();
225 repo_hold_locked_index(r, &lock_file, LOCK_DIE_ON_ERROR);
227 setup_unpack_trees_porcelain(&o, "sparse-checkout");
228 result = update_sparsity(&o);
229 clear_unpack_trees_porcelain(&o);
231 if (result == UPDATE_SPARSITY_WARNINGS)
233 * We don't do any special handling of warnings from untracked
234 * files in the way or dirty entries that can't be removed.
236 result = UPDATE_SPARSITY_SUCCESS;
237 if (result == UPDATE_SPARSITY_SUCCESS)
238 write_locked_index(r->index, &lock_file, COMMIT_LOCK);
239 else
240 rollback_lock_file(&lock_file);
242 clean_tracked_sparse_directories(r);
244 r->index->sparse_checkout_patterns = NULL;
245 return result;
248 static char *escaped_pattern(char *pattern)
250 char *p = pattern;
251 struct strbuf final = STRBUF_INIT;
253 while (*p) {
254 if (is_glob_special(*p))
255 strbuf_addch(&final, '\\');
257 strbuf_addch(&final, *p);
258 p++;
261 return strbuf_detach(&final, NULL);
264 static void write_cone_to_file(FILE *fp, struct pattern_list *pl)
266 int i;
267 struct pattern_entry *pe;
268 struct hashmap_iter iter;
269 struct string_list sl = STRING_LIST_INIT_DUP;
270 struct strbuf parent_pattern = STRBUF_INIT;
272 hashmap_for_each_entry(&pl->parent_hashmap, &iter, pe, ent) {
273 if (hashmap_get_entry(&pl->recursive_hashmap, pe, ent, NULL))
274 continue;
276 if (!hashmap_contains_parent(&pl->recursive_hashmap,
277 pe->pattern,
278 &parent_pattern))
279 string_list_insert(&sl, pe->pattern);
282 string_list_sort(&sl);
283 string_list_remove_duplicates(&sl, 0);
285 fprintf(fp, "/*\n!/*/\n");
287 for (i = 0; i < sl.nr; i++) {
288 char *pattern = escaped_pattern(sl.items[i].string);
290 if (strlen(pattern))
291 fprintf(fp, "%s/\n!%s/*/\n", pattern, pattern);
292 free(pattern);
295 string_list_clear(&sl, 0);
297 hashmap_for_each_entry(&pl->recursive_hashmap, &iter, pe, ent) {
298 if (!hashmap_contains_parent(&pl->recursive_hashmap,
299 pe->pattern,
300 &parent_pattern))
301 string_list_insert(&sl, pe->pattern);
304 strbuf_release(&parent_pattern);
306 string_list_sort(&sl);
307 string_list_remove_duplicates(&sl, 0);
309 for (i = 0; i < sl.nr; i++) {
310 char *pattern = escaped_pattern(sl.items[i].string);
311 fprintf(fp, "%s/\n", pattern);
312 free(pattern);
316 static int write_patterns_and_update(struct pattern_list *pl)
318 char *sparse_filename;
319 FILE *fp;
320 int fd;
321 struct lock_file lk = LOCK_INIT;
322 int result;
324 sparse_filename = get_sparse_checkout_filename();
326 if (safe_create_leading_directories(sparse_filename))
327 die(_("failed to create directory for sparse-checkout file"));
329 fd = hold_lock_file_for_update(&lk, sparse_filename,
330 LOCK_DIE_ON_ERROR);
331 free(sparse_filename);
333 result = update_working_directory(pl);
334 if (result) {
335 rollback_lock_file(&lk);
336 clear_pattern_list(pl);
337 update_working_directory(NULL);
338 return result;
341 fp = xfdopen(fd, "w");
343 if (core_sparse_checkout_cone)
344 write_cone_to_file(fp, pl);
345 else
346 write_patterns_to_file(fp, pl);
348 fflush(fp);
349 commit_lock_file(&lk);
351 clear_pattern_list(pl);
353 return 0;
356 enum sparse_checkout_mode {
357 MODE_NO_PATTERNS = 0,
358 MODE_ALL_PATTERNS = 1,
359 MODE_CONE_PATTERNS = 2,
362 static int set_config(enum sparse_checkout_mode mode)
364 /* Update to use worktree config, if not already. */
365 if (init_worktree_config(the_repository)) {
366 error(_("failed to initialize worktree config"));
367 return 1;
370 if (repo_config_set_worktree_gently(the_repository,
371 "core.sparseCheckout",
372 mode ? "true" : "false") ||
373 repo_config_set_worktree_gently(the_repository,
374 "core.sparseCheckoutCone",
375 mode == MODE_CONE_PATTERNS ?
376 "true" : "false"))
377 return 1;
379 if (mode == MODE_NO_PATTERNS)
380 return set_sparse_index_config(the_repository, 0);
382 return 0;
385 static int update_modes(int *cone_mode, int *sparse_index)
387 int mode, record_mode;
389 /* Determine if we need to record the mode; ensure sparse checkout on */
390 record_mode = (*cone_mode != -1) || !core_apply_sparse_checkout;
392 /* If not specified, use previous definition of cone mode */
393 if (*cone_mode == -1 && core_apply_sparse_checkout)
394 *cone_mode = core_sparse_checkout_cone;
396 /* Set cone/non-cone mode appropriately */
397 core_apply_sparse_checkout = 1;
398 if (*cone_mode == 1 || *cone_mode == -1) {
399 mode = MODE_CONE_PATTERNS;
400 core_sparse_checkout_cone = 1;
401 } else {
402 mode = MODE_ALL_PATTERNS;
403 core_sparse_checkout_cone = 0;
405 if (record_mode && set_config(mode))
406 return 1;
408 /* Set sparse-index/non-sparse-index mode if specified */
409 if (*sparse_index >= 0) {
410 if (set_sparse_index_config(the_repository, *sparse_index) < 0)
411 die(_("failed to modify sparse-index config"));
413 /* force an index rewrite */
414 repo_read_index(the_repository);
415 the_repository->index->updated_workdir = 1;
417 if (!*sparse_index)
418 ensure_full_index(the_repository->index);
421 return 0;
424 static char const * const builtin_sparse_checkout_init_usage[] = {
425 "git sparse-checkout init [--cone] [--[no-]sparse-index]",
426 NULL
429 static struct sparse_checkout_init_opts {
430 int cone_mode;
431 int sparse_index;
432 } init_opts;
434 static int sparse_checkout_init(int argc, const char **argv)
436 struct pattern_list pl;
437 char *sparse_filename;
438 int res;
439 struct object_id oid;
440 struct strbuf pattern = STRBUF_INIT;
442 static struct option builtin_sparse_checkout_init_options[] = {
443 OPT_BOOL(0, "cone", &init_opts.cone_mode,
444 N_("initialize the sparse-checkout in cone mode")),
445 OPT_BOOL(0, "sparse-index", &init_opts.sparse_index,
446 N_("toggle the use of a sparse index")),
447 OPT_END(),
450 repo_read_index(the_repository);
452 init_opts.cone_mode = -1;
453 init_opts.sparse_index = -1;
455 argc = parse_options(argc, argv, NULL,
456 builtin_sparse_checkout_init_options,
457 builtin_sparse_checkout_init_usage, 0);
459 if (update_modes(&init_opts.cone_mode, &init_opts.sparse_index))
460 return 1;
462 memset(&pl, 0, sizeof(pl));
464 sparse_filename = get_sparse_checkout_filename();
465 res = add_patterns_from_file_to_list(sparse_filename, "", 0, &pl, NULL, 0);
467 /* If we already have a sparse-checkout file, use it. */
468 if (res >= 0) {
469 free(sparse_filename);
470 return update_working_directory(NULL);
473 if (get_oid("HEAD", &oid)) {
474 FILE *fp;
476 /* assume we are in a fresh repo, but update the sparse-checkout file */
477 if (safe_create_leading_directories(sparse_filename))
478 die(_("unable to create leading directories of %s"),
479 sparse_filename);
480 fp = xfopen(sparse_filename, "w");
481 if (!fp)
482 die(_("failed to open '%s'"), sparse_filename);
484 free(sparse_filename);
485 fprintf(fp, "/*\n!/*/\n");
486 fclose(fp);
487 return 0;
490 strbuf_addstr(&pattern, "/*");
491 add_pattern(strbuf_detach(&pattern, NULL), empty_base, 0, &pl, 0);
492 strbuf_addstr(&pattern, "!/*/");
493 add_pattern(strbuf_detach(&pattern, NULL), empty_base, 0, &pl, 0);
494 pl.use_cone_patterns = init_opts.cone_mode;
496 return write_patterns_and_update(&pl);
499 static void insert_recursive_pattern(struct pattern_list *pl, struct strbuf *path)
501 struct pattern_entry *e = xmalloc(sizeof(*e));
502 e->patternlen = path->len;
503 e->pattern = strbuf_detach(path, NULL);
504 hashmap_entry_init(&e->ent, fspathhash(e->pattern));
506 hashmap_add(&pl->recursive_hashmap, &e->ent);
508 while (e->patternlen) {
509 char *slash = strrchr(e->pattern, '/');
510 char *oldpattern = e->pattern;
511 size_t newlen;
513 if (!slash || slash == e->pattern)
514 break;
516 newlen = slash - e->pattern;
517 e = xmalloc(sizeof(struct pattern_entry));
518 e->patternlen = newlen;
519 e->pattern = xstrndup(oldpattern, newlen);
520 hashmap_entry_init(&e->ent, fspathhash(e->pattern));
522 if (!hashmap_get_entry(&pl->parent_hashmap, e, ent, NULL))
523 hashmap_add(&pl->parent_hashmap, &e->ent);
527 static void strbuf_to_cone_pattern(struct strbuf *line, struct pattern_list *pl)
529 strbuf_trim(line);
531 strbuf_trim_trailing_dir_sep(line);
533 if (strbuf_normalize_path(line))
534 die(_("could not normalize path %s"), line->buf);
536 if (!line->len)
537 return;
539 if (line->buf[0] != '/')
540 strbuf_insertstr(line, 0, "/");
542 insert_recursive_pattern(pl, line);
545 static void add_patterns_from_input(struct pattern_list *pl,
546 int argc, const char **argv,
547 int use_stdin)
549 int i;
550 if (core_sparse_checkout_cone) {
551 struct strbuf line = STRBUF_INIT;
553 hashmap_init(&pl->recursive_hashmap, pl_hashmap_cmp, NULL, 0);
554 hashmap_init(&pl->parent_hashmap, pl_hashmap_cmp, NULL, 0);
555 pl->use_cone_patterns = 1;
557 if (use_stdin) {
558 struct strbuf unquoted = STRBUF_INIT;
559 while (!strbuf_getline(&line, stdin)) {
560 if (line.buf[0] == '"') {
561 strbuf_reset(&unquoted);
562 if (unquote_c_style(&unquoted, line.buf, NULL))
563 die(_("unable to unquote C-style string '%s'"),
564 line.buf);
566 strbuf_swap(&unquoted, &line);
569 strbuf_to_cone_pattern(&line, pl);
572 strbuf_release(&unquoted);
573 } else {
574 for (i = 0; i < argc; i++) {
575 strbuf_setlen(&line, 0);
576 strbuf_addstr(&line, argv[i]);
577 strbuf_to_cone_pattern(&line, pl);
580 } else {
581 if (use_stdin) {
582 struct strbuf line = STRBUF_INIT;
584 while (!strbuf_getline(&line, stdin)) {
585 size_t len;
586 char *buf = strbuf_detach(&line, &len);
587 add_pattern(buf, empty_base, 0, pl, 0);
589 } else {
590 for (i = 0; i < argc; i++)
591 add_pattern(argv[i], empty_base, 0, pl, 0);
596 enum modify_type {
597 REPLACE,
598 ADD,
601 static void add_patterns_cone_mode(int argc, const char **argv,
602 struct pattern_list *pl,
603 int use_stdin)
605 struct strbuf buffer = STRBUF_INIT;
606 struct pattern_entry *pe;
607 struct hashmap_iter iter;
608 struct pattern_list existing;
609 char *sparse_filename = get_sparse_checkout_filename();
611 add_patterns_from_input(pl, argc, argv, use_stdin);
613 memset(&existing, 0, sizeof(existing));
614 existing.use_cone_patterns = core_sparse_checkout_cone;
616 if (add_patterns_from_file_to_list(sparse_filename, "", 0,
617 &existing, NULL, 0))
618 die(_("unable to load existing sparse-checkout patterns"));
619 free(sparse_filename);
621 if (!existing.use_cone_patterns)
622 die(_("existing sparse-checkout patterns do not use cone mode"));
624 hashmap_for_each_entry(&existing.recursive_hashmap, &iter, pe, ent) {
625 if (!hashmap_contains_parent(&pl->recursive_hashmap,
626 pe->pattern, &buffer) ||
627 !hashmap_contains_parent(&pl->parent_hashmap,
628 pe->pattern, &buffer)) {
629 strbuf_reset(&buffer);
630 strbuf_addstr(&buffer, pe->pattern);
631 insert_recursive_pattern(pl, &buffer);
635 clear_pattern_list(&existing);
636 strbuf_release(&buffer);
639 static void add_patterns_literal(int argc, const char **argv,
640 struct pattern_list *pl,
641 int use_stdin)
643 char *sparse_filename = get_sparse_checkout_filename();
644 if (add_patterns_from_file_to_list(sparse_filename, "", 0,
645 pl, NULL, 0))
646 die(_("unable to load existing sparse-checkout patterns"));
647 free(sparse_filename);
648 add_patterns_from_input(pl, argc, argv, use_stdin);
651 static int modify_pattern_list(int argc, const char **argv, int use_stdin,
652 enum modify_type m)
654 int result;
655 int changed_config = 0;
656 struct pattern_list *pl = xcalloc(1, sizeof(*pl));
658 switch (m) {
659 case ADD:
660 if (core_sparse_checkout_cone)
661 add_patterns_cone_mode(argc, argv, pl, use_stdin);
662 else
663 add_patterns_literal(argc, argv, pl, use_stdin);
664 break;
666 case REPLACE:
667 add_patterns_from_input(pl, argc, argv, use_stdin);
668 break;
671 if (!core_apply_sparse_checkout) {
672 set_config(MODE_ALL_PATTERNS);
673 core_apply_sparse_checkout = 1;
674 changed_config = 1;
677 result = write_patterns_and_update(pl);
679 if (result && changed_config)
680 set_config(MODE_NO_PATTERNS);
682 clear_pattern_list(pl);
683 free(pl);
684 return result;
687 static void sanitize_paths(int argc, const char **argv,
688 const char *prefix, int skip_checks)
690 int i;
692 if (!argc)
693 return;
695 if (prefix && *prefix && core_sparse_checkout_cone) {
697 * The args are not pathspecs, so unfortunately we
698 * cannot imitate how cmd_add() uses parse_pathspec().
700 int prefix_len = strlen(prefix);
702 for (i = 0; i < argc; i++)
703 argv[i] = prefix_path(prefix, prefix_len, argv[i]);
706 if (skip_checks)
707 return;
709 if (prefix && *prefix && !core_sparse_checkout_cone)
710 die(_("please run from the toplevel directory in non-cone mode"));
712 if (core_sparse_checkout_cone) {
713 for (i = 0; i < argc; i++) {
714 if (argv[i][0] == '/')
715 die(_("specify directories rather than patterns (no leading slash)"));
716 if (argv[i][0] == '!')
717 die(_("specify directories rather than patterns. If your directory starts with a '!', pass --skip-checks"));
718 if (strpbrk(argv[i], "*?[]"))
719 die(_("specify directories rather than patterns. If your directory really has any of '*?[]\\' in it, pass --skip-checks"));
723 for (i = 0; i < argc; i++) {
724 struct cache_entry *ce;
725 struct index_state *index = the_repository->index;
726 int pos = index_name_pos(index, argv[i], strlen(argv[i]));
728 if (pos < 0)
729 continue;
730 ce = index->cache[pos];
731 if (S_ISSPARSEDIR(ce->ce_mode))
732 continue;
734 if (core_sparse_checkout_cone)
735 die(_("'%s' is not a directory; to treat it as a directory anyway, rerun with --skip-checks"), argv[i]);
736 else
737 warning(_("pass a leading slash before paths such as '%s' if you want a single file (see NON-CONE PROBLEMS in the git-sparse-checkout manual)."), argv[i]);
741 static char const * const builtin_sparse_checkout_add_usage[] = {
742 N_("git sparse-checkout add [--skip-checks] (--stdin | <patterns>)"),
743 NULL
746 static struct sparse_checkout_add_opts {
747 int skip_checks;
748 int use_stdin;
749 } add_opts;
751 static int sparse_checkout_add(int argc, const char **argv, const char *prefix)
753 static struct option builtin_sparse_checkout_add_options[] = {
754 OPT_BOOL_F(0, "skip-checks", &add_opts.skip_checks,
755 N_("skip some sanity checks on the given paths that might give false positives"),
756 PARSE_OPT_NONEG),
757 OPT_BOOL(0, "stdin", &add_opts.use_stdin,
758 N_("read patterns from standard in")),
759 OPT_END(),
762 if (!core_apply_sparse_checkout)
763 die(_("no sparse-checkout to add to"));
765 repo_read_index(the_repository);
767 argc = parse_options(argc, argv, prefix,
768 builtin_sparse_checkout_add_options,
769 builtin_sparse_checkout_add_usage,
770 PARSE_OPT_KEEP_UNKNOWN);
772 sanitize_paths(argc, argv, prefix, add_opts.skip_checks);
774 return modify_pattern_list(argc, argv, add_opts.use_stdin, ADD);
777 static char const * const builtin_sparse_checkout_set_usage[] = {
778 N_("git sparse-checkout set [--[no-]cone] [--[no-]sparse-index] [--skip-checks] (--stdin | <patterns>)"),
779 NULL
782 static struct sparse_checkout_set_opts {
783 int cone_mode;
784 int sparse_index;
785 int skip_checks;
786 int use_stdin;
787 } set_opts;
789 static int sparse_checkout_set(int argc, const char **argv, const char *prefix)
791 int default_patterns_nr = 2;
792 const char *default_patterns[] = {"/*", "!/*/", NULL};
794 static struct option builtin_sparse_checkout_set_options[] = {
795 OPT_BOOL(0, "cone", &set_opts.cone_mode,
796 N_("initialize the sparse-checkout in cone mode")),
797 OPT_BOOL(0, "sparse-index", &set_opts.sparse_index,
798 N_("toggle the use of a sparse index")),
799 OPT_BOOL_F(0, "skip-checks", &set_opts.skip_checks,
800 N_("skip some sanity checks on the given paths that might give false positives"),
801 PARSE_OPT_NONEG),
802 OPT_BOOL_F(0, "stdin", &set_opts.use_stdin,
803 N_("read patterns from standard in"),
804 PARSE_OPT_NONEG),
805 OPT_END(),
808 repo_read_index(the_repository);
810 set_opts.cone_mode = -1;
811 set_opts.sparse_index = -1;
813 argc = parse_options(argc, argv, prefix,
814 builtin_sparse_checkout_set_options,
815 builtin_sparse_checkout_set_usage,
816 PARSE_OPT_KEEP_UNKNOWN);
818 if (update_modes(&set_opts.cone_mode, &set_opts.sparse_index))
819 return 1;
822 * Cone mode automatically specifies the toplevel directory. For
823 * non-cone mode, if nothing is specified, manually select just the
824 * top-level directory (much as 'init' would do).
826 if (!core_sparse_checkout_cone && argc == 0) {
827 argv = default_patterns;
828 argc = default_patterns_nr;
829 } else {
830 sanitize_paths(argc, argv, prefix, set_opts.skip_checks);
833 return modify_pattern_list(argc, argv, set_opts.use_stdin, REPLACE);
836 static char const * const builtin_sparse_checkout_reapply_usage[] = {
837 "git sparse-checkout reapply [--[no-]cone] [--[no-]sparse-index]",
838 NULL
841 static struct sparse_checkout_reapply_opts {
842 int cone_mode;
843 int sparse_index;
844 } reapply_opts;
846 static int sparse_checkout_reapply(int argc, const char **argv)
848 static struct option builtin_sparse_checkout_reapply_options[] = {
849 OPT_BOOL(0, "cone", &reapply_opts.cone_mode,
850 N_("initialize the sparse-checkout in cone mode")),
851 OPT_BOOL(0, "sparse-index", &reapply_opts.sparse_index,
852 N_("toggle the use of a sparse index")),
853 OPT_END(),
856 if (!core_apply_sparse_checkout)
857 die(_("must be in a sparse-checkout to reapply sparsity patterns"));
859 reapply_opts.cone_mode = -1;
860 reapply_opts.sparse_index = -1;
862 argc = parse_options(argc, argv, NULL,
863 builtin_sparse_checkout_reapply_options,
864 builtin_sparse_checkout_reapply_usage, 0);
866 repo_read_index(the_repository);
868 if (update_modes(&reapply_opts.cone_mode, &reapply_opts.sparse_index))
869 return 1;
871 return update_working_directory(NULL);
874 static char const * const builtin_sparse_checkout_disable_usage[] = {
875 "git sparse-checkout disable",
876 NULL
879 static int sparse_checkout_disable(int argc, const char **argv)
881 static struct option builtin_sparse_checkout_disable_options[] = {
882 OPT_END(),
884 struct pattern_list pl;
885 struct strbuf match_all = STRBUF_INIT;
888 * We do not exit early if !core_apply_sparse_checkout; due to the
889 * ability for users to manually muck things up between
890 * direct editing of .git/info/sparse-checkout
891 * running read-tree -m u HEAD or update-index --skip-worktree
892 * direct toggling of config options
893 * users might end up with an index with SKIP_WORKTREE bit set on
894 * some files and not know how to undo it. So, here we just
895 * forcibly return to a dense checkout regardless of initial state.
898 argc = parse_options(argc, argv, NULL,
899 builtin_sparse_checkout_disable_options,
900 builtin_sparse_checkout_disable_usage, 0);
902 repo_read_index(the_repository);
904 memset(&pl, 0, sizeof(pl));
905 hashmap_init(&pl.recursive_hashmap, pl_hashmap_cmp, NULL, 0);
906 hashmap_init(&pl.parent_hashmap, pl_hashmap_cmp, NULL, 0);
907 pl.use_cone_patterns = 0;
908 core_apply_sparse_checkout = 1;
910 strbuf_addstr(&match_all, "/*");
911 add_pattern(strbuf_detach(&match_all, NULL), empty_base, 0, &pl, 0);
913 prepare_repo_settings(the_repository);
914 the_repository->settings.sparse_index = 0;
916 if (update_working_directory(&pl))
917 die(_("error while refreshing working directory"));
919 clear_pattern_list(&pl);
920 return set_config(MODE_NO_PATTERNS);
923 int cmd_sparse_checkout(int argc, const char **argv, const char *prefix)
925 static struct option builtin_sparse_checkout_options[] = {
926 OPT_END(),
929 if (argc == 2 && !strcmp(argv[1], "-h"))
930 usage_with_options(builtin_sparse_checkout_usage,
931 builtin_sparse_checkout_options);
933 argc = parse_options(argc, argv, prefix,
934 builtin_sparse_checkout_options,
935 builtin_sparse_checkout_usage,
936 PARSE_OPT_STOP_AT_NON_OPTION);
938 git_config(git_default_config, NULL);
940 prepare_repo_settings(the_repository);
941 the_repository->settings.command_requires_full_index = 0;
943 if (argc > 0) {
944 if (!strcmp(argv[0], "list"))
945 return sparse_checkout_list(argc, argv);
946 if (!strcmp(argv[0], "init"))
947 return sparse_checkout_init(argc, argv);
948 if (!strcmp(argv[0], "set"))
949 return sparse_checkout_set(argc, argv, prefix);
950 if (!strcmp(argv[0], "add"))
951 return sparse_checkout_add(argc, argv, prefix);
952 if (!strcmp(argv[0], "reapply"))
953 return sparse_checkout_reapply(argc, argv);
954 if (!strcmp(argv[0], "disable"))
955 return sparse_checkout_disable(argc, argv);
958 usage_with_options(builtin_sparse_checkout_usage,
959 builtin_sparse_checkout_options);