6 #include "parse-options.h"
7 #include "argv-array.h"
10 #include "run-command.h"
16 static const char * const worktree_usage[] = {
17 N_("git worktree add [<options>] <path> [<commit-ish>]"),
18 N_("git worktree list [<options>]"),
19 N_("git worktree lock [<options>] <path>"),
20 N_("git worktree move <worktree> <new-path>"),
21 N_("git worktree prune [<options>]"),
22 N_("git worktree remove [<options>] <worktree>"),
23 N_("git worktree unlock <path>"),
37 static int guess_remote;
38 static timestamp_t expire;
40 static int git_worktree_config(const char *var, const char *value, void *cb)
42 if (!strcmp(var, "worktree.guessremote")) {
43 guess_remote = git_config_bool(var, value);
47 return git_default_config(var, value, cb);
50 static int delete_git_dir(const char *id)
52 struct strbuf sb = STRBUF_INIT;
55 strbuf_addstr(&sb, git_common_path("worktrees/%s", id));
56 ret = remove_dir_recursively(&sb, 0);
57 if (ret < 0 && errno == ENOTDIR)
60 error_errno(_("failed to delete '%s'"), sb.buf);
65 static int prune_worktree(const char *id, struct strbuf *reason)
73 if (!is_directory(git_path("worktrees/%s", id))) {
74 strbuf_addf(reason, _("Removing worktrees/%s: not a valid directory"), id);
77 if (file_exists(git_path("worktrees/%s/locked", id)))
79 if (stat(git_path("worktrees/%s/gitdir", id), &st)) {
80 strbuf_addf(reason, _("Removing worktrees/%s: gitdir file does not exist"), id);
83 fd = open(git_path("worktrees/%s/gitdir", id), O_RDONLY);
85 strbuf_addf(reason, _("Removing worktrees/%s: unable to read gitdir file (%s)"),
89 len = xsize_t(st.st_size);
92 read_result = read_in_full(fd, path, len);
93 if (read_result < 0) {
94 strbuf_addf(reason, _("Removing worktrees/%s: unable to read gitdir file (%s)"),
102 if (read_result != len) {
104 _("Removing worktrees/%s: short read (expected %"PRIuMAX" bytes, read %"PRIuMAX")"),
105 id, (uintmax_t)len, (uintmax_t)read_result);
109 while (len && (path[len - 1] == '\n' || path[len - 1] == '\r'))
112 strbuf_addf(reason, _("Removing worktrees/%s: invalid gitdir file"), id);
117 if (!file_exists(path)) {
119 if (stat(git_path("worktrees/%s/index", id), &st) ||
120 st.st_mtime <= expire) {
121 strbuf_addf(reason, _("Removing worktrees/%s: gitdir file points to non-existent location"), id);
131 static void prune_worktrees(void)
133 struct strbuf reason = STRBUF_INIT;
134 DIR *dir = opendir(git_path("worktrees"));
138 while ((d = readdir(dir)) != NULL) {
139 if (is_dot_or_dotdot(d->d_name))
141 strbuf_reset(&reason);
142 if (!prune_worktree(d->d_name, &reason))
144 if (show_only || verbose)
145 printf("%s\n", reason.buf);
148 delete_git_dir(d->d_name);
152 rmdir(git_path("worktrees"));
153 strbuf_release(&reason);
156 static int prune(int ac, const char **av, const char *prefix)
158 struct option options[] = {
159 OPT__DRY_RUN(&show_only, N_("do not remove, show only")),
160 OPT__VERBOSE(&verbose, N_("report pruned working trees")),
161 OPT_EXPIRY_DATE(0, "expire", &expire,
162 N_("expire working trees older than <time>")),
167 ac = parse_options(ac, av, prefix, options, worktree_usage, 0);
169 usage_with_options(worktree_usage, options);
174 static char *junk_work_tree;
175 static char *junk_git_dir;
177 static pid_t junk_pid;
179 static void remove_junk(void)
181 struct strbuf sb = STRBUF_INIT;
182 if (!is_junk || getpid() != junk_pid)
185 strbuf_addstr(&sb, junk_git_dir);
186 remove_dir_recursively(&sb, 0);
189 if (junk_work_tree) {
190 strbuf_addstr(&sb, junk_work_tree);
191 remove_dir_recursively(&sb, 0);
196 static void remove_junk_on_signal(int signo)
203 static const char *worktree_basename(const char *path, int *olen)
209 while (len && is_dir_sep(path[len - 1]))
212 for (name = path + len - 1; name > path; name--)
213 if (is_dir_sep(*name)) {
222 static void validate_worktree_add(const char *path, const struct add_opts *opts)
224 struct worktree **worktrees;
228 if (file_exists(path) && !is_empty_dir(path))
229 die(_("'%s' already exists"), path);
231 worktrees = get_worktrees(0);
233 * find_worktree()'s suffix matching may undesirably find the main
234 * rather than a linked worktree (for instance, when the basenames
235 * of the main worktree and the one being created are the same).
236 * We're only interested in linked worktrees, so skip the main
239 wt = find_worktree(worktrees + 1, NULL, path);
243 locked = !!is_worktree_locked(wt);
245 die(_("'%s' is a missing but locked worktree;\nuse 'unlock' and 'prune' or 'remove' to clear"), path);
247 die(_("'%s' is a missing but already registered worktree;\nuse 'prune' or 'remove' to clear"), path);
250 free_worktrees(worktrees);
253 static int add_worktree(const char *path, const char *refname,
254 const struct add_opts *opts)
256 struct strbuf sb_git = STRBUF_INIT, sb_repo = STRBUF_INIT;
257 struct strbuf sb = STRBUF_INIT;
260 struct child_process cp = CHILD_PROCESS_INIT;
261 struct argv_array child_env = ARGV_ARRAY_INIT;
262 int counter = 0, len, ret;
263 struct strbuf symref = STRBUF_INIT;
264 struct commit *commit = NULL;
267 validate_worktree_add(path, opts);
269 /* is 'refname' a branch or commit? */
270 if (!opts->detach && !strbuf_check_branch_ref(&symref, refname) &&
271 ref_exists(symref.buf)) {
274 die_if_checked_out(symref.buf, 0);
276 commit = lookup_commit_reference_by_name(refname);
278 die(_("invalid reference: %s"), refname);
280 name = worktree_basename(path, &len);
281 git_path_buf(&sb_repo, "worktrees/%.*s", (int)(path + len - name), name);
283 if (safe_create_leading_directories_const(sb_repo.buf))
284 die_errno(_("could not create leading directories of '%s'"),
286 while (!stat(sb_repo.buf, &st)) {
288 strbuf_setlen(&sb_repo, len);
289 strbuf_addf(&sb_repo, "%d", counter);
291 name = strrchr(sb_repo.buf, '/') + 1;
295 sigchain_push_common(remove_junk_on_signal);
297 if (mkdir(sb_repo.buf, 0777))
298 die_errno(_("could not create directory of '%s'"), sb_repo.buf);
299 junk_git_dir = xstrdup(sb_repo.buf);
303 * lock the incomplete repo so prune won't delete it, unlock
304 * after the preparation is over.
306 strbuf_addf(&sb, "%s/locked", sb_repo.buf);
307 if (!opts->keep_locked)
308 write_file(sb.buf, "initializing");
310 write_file(sb.buf, "added with --lock");
312 strbuf_addf(&sb_git, "%s/.git", path);
313 if (safe_create_leading_directories_const(sb_git.buf))
314 die_errno(_("could not create leading directories of '%s'"),
316 junk_work_tree = xstrdup(path);
319 strbuf_addf(&sb, "%s/gitdir", sb_repo.buf);
320 write_file(sb.buf, "%s", real_path(sb_git.buf));
321 write_file(sb_git.buf, "gitdir: %s/worktrees/%s",
322 real_path(get_git_common_dir()), name);
324 * This is to keep resolve_ref() happy. We need a valid HEAD
325 * or is_git_directory() will reject the directory. Any value which
326 * looks like an object ID will do since it will be immediately
327 * replaced by the symbolic-ref or update-ref invocation in the new
331 strbuf_addf(&sb, "%s/HEAD", sb_repo.buf);
332 write_file(sb.buf, "%s", sha1_to_hex(null_sha1));
334 strbuf_addf(&sb, "%s/commondir", sb_repo.buf);
335 write_file(sb.buf, "../..");
337 argv_array_pushf(&child_env, "%s=%s", GIT_DIR_ENVIRONMENT, sb_git.buf);
338 argv_array_pushf(&child_env, "%s=%s", GIT_WORK_TREE_ENVIRONMENT, path);
342 argv_array_pushl(&cp.args, "update-ref", "HEAD",
343 oid_to_hex(&commit->object.oid), NULL);
345 argv_array_pushl(&cp.args, "symbolic-ref", "HEAD",
348 argv_array_push(&cp.args, "--quiet");
351 cp.env = child_env.argv;
352 ret = run_command(&cp);
356 if (opts->checkout) {
358 argv_array_clear(&cp.args);
359 argv_array_pushl(&cp.args, "reset", "--hard", NULL);
361 argv_array_push(&cp.args, "--quiet");
362 cp.env = child_env.argv;
363 ret = run_command(&cp);
369 FREE_AND_NULL(junk_work_tree);
370 FREE_AND_NULL(junk_git_dir);
373 if (ret || !opts->keep_locked) {
375 strbuf_addf(&sb, "%s/locked", sb_repo.buf);
376 unlink_or_warn(sb.buf);
380 * Hook failure does not warrant worktree deletion, so run hook after
381 * is_junk is cleared, but do return appropriate code when hook fails.
383 if (!ret && opts->checkout) {
384 const char *hook = find_hook("post-checkout");
386 const char *env[] = { "GIT_DIR", "GIT_WORK_TREE", NULL };
389 cp.stdout_to_stderr = 1;
393 argv_array_pushl(&cp.args, absolute_path(hook),
394 oid_to_hex(&null_oid),
395 oid_to_hex(&commit->object.oid),
397 ret = run_command(&cp);
401 argv_array_clear(&child_env);
403 strbuf_release(&symref);
404 strbuf_release(&sb_repo);
405 strbuf_release(&sb_git);
409 static void print_preparing_worktree_line(int detach,
411 const char *new_branch,
412 int force_new_branch)
414 if (force_new_branch) {
415 struct commit *commit = lookup_commit_reference_by_name(new_branch);
417 printf_ln(_("Preparing worktree (new branch '%s')"), new_branch);
419 printf_ln(_("Preparing worktree (resetting branch '%s'; was at %s)"),
421 find_unique_abbrev(&commit->object.oid, DEFAULT_ABBREV));
422 } else if (new_branch) {
423 printf_ln(_("Preparing worktree (new branch '%s')"), new_branch);
425 struct strbuf s = STRBUF_INIT;
426 if (!detach && !strbuf_check_branch_ref(&s, branch) &&
428 printf_ln(_("Preparing worktree (checking out '%s')"),
431 struct commit *commit = lookup_commit_reference_by_name(branch);
433 die(_("invalid reference: %s"), branch);
434 printf_ln(_("Preparing worktree (detached HEAD %s)"),
435 find_unique_abbrev(&commit->object.oid, DEFAULT_ABBREV));
441 static const char *dwim_branch(const char *path, const char **new_branch)
444 const char *s = worktree_basename(path, &n);
445 const char *branchname = xstrndup(s, n);
446 struct strbuf ref = STRBUF_INIT;
449 if (!strbuf_check_branch_ref(&ref, branchname) &&
450 ref_exists(ref.buf)) {
451 strbuf_release(&ref);
455 *new_branch = branchname;
457 struct object_id oid;
459 unique_tracking_name(*new_branch, &oid, NULL);
465 static int add(int ac, const char **av, const char *prefix)
467 struct add_opts opts;
468 const char *new_branch_force = NULL;
471 const char *new_branch = NULL;
472 const char *opt_track = NULL;
473 struct option options[] = {
474 OPT__FORCE(&opts.force,
475 N_("checkout <branch> even if already checked out in other worktree"),
476 PARSE_OPT_NOCOMPLETE),
477 OPT_STRING('b', NULL, &new_branch, N_("branch"),
478 N_("create a new branch")),
479 OPT_STRING('B', NULL, &new_branch_force, N_("branch"),
480 N_("create or reset a branch")),
481 OPT_BOOL(0, "detach", &opts.detach, N_("detach HEAD at named commit")),
482 OPT_BOOL(0, "checkout", &opts.checkout, N_("populate the new working tree")),
483 OPT_BOOL(0, "lock", &opts.keep_locked, N_("keep the new working tree locked")),
484 OPT__QUIET(&opts.quiet, N_("suppress progress reporting")),
485 OPT_PASSTHRU(0, "track", &opt_track, NULL,
486 N_("set up tracking mode (see git-branch(1))"),
487 PARSE_OPT_NOARG | PARSE_OPT_OPTARG),
488 OPT_BOOL(0, "guess-remote", &guess_remote,
489 N_("try to match the new branch name with a remote-tracking branch")),
493 memset(&opts, 0, sizeof(opts));
495 ac = parse_options(ac, av, prefix, options, worktree_usage, 0);
496 if (!!opts.detach + !!new_branch + !!new_branch_force > 1)
497 die(_("-b, -B, and --detach are mutually exclusive"));
498 if (ac < 1 || ac > 2)
499 usage_with_options(worktree_usage, options);
501 path = prefix_filename(prefix, av[0]);
502 branch = ac < 2 ? "HEAD" : av[1];
504 if (!strcmp(branch, "-"))
507 if (new_branch_force) {
508 struct strbuf symref = STRBUF_INIT;
510 new_branch = new_branch_force;
513 !strbuf_check_branch_ref(&symref, new_branch) &&
514 ref_exists(symref.buf))
515 die_if_checked_out(symref.buf, 0);
516 strbuf_release(&symref);
519 if (ac < 2 && !new_branch && !opts.detach) {
520 const char *s = dwim_branch(path, &new_branch);
525 if (ac == 2 && !new_branch && !opts.detach) {
526 struct object_id oid;
527 struct commit *commit;
530 commit = lookup_commit_reference_by_name(branch);
532 remote = unique_tracking_name(branch, &oid, NULL);
540 print_preparing_worktree_line(opts.detach, branch, new_branch, !!new_branch_force);
543 struct child_process cp = CHILD_PROCESS_INIT;
545 argv_array_push(&cp.args, "branch");
546 if (new_branch_force)
547 argv_array_push(&cp.args, "--force");
549 argv_array_push(&cp.args, "--quiet");
550 argv_array_push(&cp.args, new_branch);
551 argv_array_push(&cp.args, branch);
553 argv_array_push(&cp.args, opt_track);
554 if (run_command(&cp))
557 } else if (opt_track) {
558 die(_("--[no-]track can only be used if a new branch is created"));
563 return add_worktree(path, branch, &opts);
566 static void show_worktree_porcelain(struct worktree *wt)
568 printf("worktree %s\n", wt->path);
572 printf("HEAD %s\n", oid_to_hex(&wt->head_oid));
574 printf("detached\n");
575 else if (wt->head_ref)
576 printf("branch %s\n", wt->head_ref);
581 static void show_worktree(struct worktree *wt, int path_maxlen, int abbrev_len)
583 struct strbuf sb = STRBUF_INIT;
584 int cur_path_len = strlen(wt->path);
585 int path_adj = cur_path_len - utf8_strwidth(wt->path);
587 strbuf_addf(&sb, "%-*s ", 1 + path_maxlen + path_adj, wt->path);
589 strbuf_addstr(&sb, "(bare)");
591 strbuf_addf(&sb, "%-*s ", abbrev_len,
592 find_unique_abbrev(&wt->head_oid, DEFAULT_ABBREV));
594 strbuf_addstr(&sb, "(detached HEAD)");
595 else if (wt->head_ref) {
596 char *ref = shorten_unambiguous_ref(wt->head_ref, 0);
597 strbuf_addf(&sb, "[%s]", ref);
600 strbuf_addstr(&sb, "(error)");
602 printf("%s\n", sb.buf);
607 static void measure_widths(struct worktree **wt, int *abbrev, int *maxlen)
611 for (i = 0; wt[i]; i++) {
613 int path_len = strlen(wt[i]->path);
615 if (path_len > *maxlen)
617 sha1_len = strlen(find_unique_abbrev(&wt[i]->head_oid, *abbrev));
618 if (sha1_len > *abbrev)
623 static int list(int ac, const char **av, const char *prefix)
627 struct option options[] = {
628 OPT_BOOL(0, "porcelain", &porcelain, N_("machine-readable output")),
632 ac = parse_options(ac, av, prefix, options, worktree_usage, 0);
634 usage_with_options(worktree_usage, options);
636 struct worktree **worktrees = get_worktrees(GWT_SORT_LINKED);
637 int path_maxlen = 0, abbrev = DEFAULT_ABBREV, i;
640 measure_widths(worktrees, &abbrev, &path_maxlen);
642 for (i = 0; worktrees[i]; i++) {
644 show_worktree_porcelain(worktrees[i]);
646 show_worktree(worktrees[i], path_maxlen, abbrev);
648 free_worktrees(worktrees);
653 static int lock_worktree(int ac, const char **av, const char *prefix)
655 const char *reason = "", *old_reason;
656 struct option options[] = {
657 OPT_STRING(0, "reason", &reason, N_("string"),
658 N_("reason for locking")),
661 struct worktree **worktrees, *wt;
663 ac = parse_options(ac, av, prefix, options, worktree_usage, 0);
665 usage_with_options(worktree_usage, options);
667 worktrees = get_worktrees(0);
668 wt = find_worktree(worktrees, prefix, av[0]);
670 die(_("'%s' is not a working tree"), av[0]);
671 if (is_main_worktree(wt))
672 die(_("The main working tree cannot be locked or unlocked"));
674 old_reason = is_worktree_locked(wt);
677 die(_("'%s' is already locked, reason: %s"),
679 die(_("'%s' is already locked"), av[0]);
682 write_file(git_common_path("worktrees/%s/locked", wt->id),
684 free_worktrees(worktrees);
688 static int unlock_worktree(int ac, const char **av, const char *prefix)
690 struct option options[] = {
693 struct worktree **worktrees, *wt;
696 ac = parse_options(ac, av, prefix, options, worktree_usage, 0);
698 usage_with_options(worktree_usage, options);
700 worktrees = get_worktrees(0);
701 wt = find_worktree(worktrees, prefix, av[0]);
703 die(_("'%s' is not a working tree"), av[0]);
704 if (is_main_worktree(wt))
705 die(_("The main working tree cannot be locked or unlocked"));
706 if (!is_worktree_locked(wt))
707 die(_("'%s' is not locked"), av[0]);
708 ret = unlink_or_warn(git_common_path("worktrees/%s/locked", wt->id));
709 free_worktrees(worktrees);
713 static void validate_no_submodules(const struct worktree *wt)
715 struct index_state istate = { NULL };
716 int i, found_submodules = 0;
718 if (read_index_from(&istate, worktree_git_path(wt, "index"),
719 get_worktree_git_dir(wt)) > 0) {
720 for (i = 0; i < istate.cache_nr; i++) {
721 struct cache_entry *ce = istate.cache[i];
723 if (S_ISGITLINK(ce->ce_mode)) {
724 found_submodules = 1;
729 discard_index(&istate);
731 if (found_submodules)
732 die(_("working trees containing submodules cannot be moved or removed"));
735 static int move_worktree(int ac, const char **av, const char *prefix)
737 struct option options[] = {
740 struct worktree **worktrees, *wt;
741 struct strbuf dst = STRBUF_INIT;
742 struct strbuf errmsg = STRBUF_INIT;
746 ac = parse_options(ac, av, prefix, options, worktree_usage, 0);
748 usage_with_options(worktree_usage, options);
750 path = prefix_filename(prefix, av[1]);
751 strbuf_addstr(&dst, path);
754 worktrees = get_worktrees(0);
755 wt = find_worktree(worktrees, prefix, av[0]);
757 die(_("'%s' is not a working tree"), av[0]);
758 if (is_main_worktree(wt))
759 die(_("'%s' is a main working tree"), av[0]);
760 if (is_directory(dst.buf)) {
761 const char *sep = find_last_dir_sep(wt->path);
764 die(_("could not figure out destination name from '%s'"),
766 strbuf_trim_trailing_dir_sep(&dst);
767 strbuf_addstr(&dst, sep);
769 if (file_exists(dst.buf))
770 die(_("target '%s' already exists"), dst.buf);
772 validate_no_submodules(wt);
774 reason = is_worktree_locked(wt);
777 die(_("cannot move a locked working tree, lock reason: %s"),
779 die(_("cannot move a locked working tree"));
781 if (validate_worktree(wt, &errmsg, 0))
782 die(_("validation failed, cannot move working tree: %s"),
784 strbuf_release(&errmsg);
786 if (rename(wt->path, dst.buf) == -1)
787 die_errno(_("failed to move '%s' to '%s'"), wt->path, dst.buf);
789 update_worktree_location(wt, dst.buf);
791 strbuf_release(&dst);
792 free_worktrees(worktrees);
797 * Note, "git status --porcelain" is used to determine if it's safe to
798 * delete a whole worktree. "git status" does not ignore user
799 * configuration, so if a normal "git status" shows "clean" for the
800 * user, then it's ok to remove it.
802 * This assumption may be a bad one. We may want to ignore
803 * (potentially bad) user settings and only delete a worktree when
804 * it's absolutely safe to do so from _our_ point of view because we
807 static void check_clean_worktree(struct worktree *wt,
808 const char *original_path)
810 struct argv_array child_env = ARGV_ARRAY_INIT;
811 struct child_process cp;
816 * Until we sort this out, all submodules are "dirty" and
817 * will abort this function.
819 validate_no_submodules(wt);
821 argv_array_pushf(&child_env, "%s=%s/.git",
822 GIT_DIR_ENVIRONMENT, wt->path);
823 argv_array_pushf(&child_env, "%s=%s",
824 GIT_WORK_TREE_ENVIRONMENT, wt->path);
825 memset(&cp, 0, sizeof(cp));
826 argv_array_pushl(&cp.args, "status",
827 "--porcelain", "--ignore-submodules=none",
829 cp.env = child_env.argv;
833 ret = start_command(&cp);
835 die_errno(_("failed to run 'git status' on '%s'"),
837 ret = xread(cp.out, buf, sizeof(buf));
839 die(_("'%s' is dirty, use --force to delete it"),
842 ret = finish_command(&cp);
844 die_errno(_("failed to run 'git status' on '%s', code %d"),
848 static int delete_git_work_tree(struct worktree *wt)
850 struct strbuf sb = STRBUF_INIT;
853 strbuf_addstr(&sb, wt->path);
854 if (remove_dir_recursively(&sb, 0)) {
855 error_errno(_("failed to delete '%s'"), sb.buf);
862 static int remove_worktree(int ac, const char **av, const char *prefix)
865 struct option options[] = {
867 N_("force removing even if the worktree is dirty"),
868 PARSE_OPT_NOCOMPLETE),
871 struct worktree **worktrees, *wt;
872 struct strbuf errmsg = STRBUF_INIT;
876 ac = parse_options(ac, av, prefix, options, worktree_usage, 0);
878 usage_with_options(worktree_usage, options);
880 worktrees = get_worktrees(0);
881 wt = find_worktree(worktrees, prefix, av[0]);
883 die(_("'%s' is not a working tree"), av[0]);
884 if (is_main_worktree(wt))
885 die(_("'%s' is a main working tree"), av[0]);
886 reason = is_worktree_locked(wt);
889 die(_("cannot remove a locked working tree, lock reason: %s"),
891 die(_("cannot remove a locked working tree"));
893 if (validate_worktree(wt, &errmsg, WT_VALIDATE_WORKTREE_MISSING_OK))
894 die(_("validation failed, cannot remove working tree: %s"),
896 strbuf_release(&errmsg);
898 if (file_exists(wt->path)) {
900 check_clean_worktree(wt, av[0]);
902 ret |= delete_git_work_tree(wt);
905 * continue on even if ret is non-zero, there's no going back
908 ret |= delete_git_dir(wt->id);
910 free_worktrees(worktrees);
914 int cmd_worktree(int ac, const char **av, const char *prefix)
916 struct option options[] = {
920 git_config(git_worktree_config, NULL);
923 usage_with_options(worktree_usage, options);
926 if (!strcmp(av[1], "add"))
927 return add(ac - 1, av + 1, prefix);
928 if (!strcmp(av[1], "prune"))
929 return prune(ac - 1, av + 1, prefix);
930 if (!strcmp(av[1], "list"))
931 return list(ac - 1, av + 1, prefix);
932 if (!strcmp(av[1], "lock"))
933 return lock_worktree(ac - 1, av + 1, prefix);
934 if (!strcmp(av[1], "unlock"))
935 return unlock_worktree(ac - 1, av + 1, prefix);
936 if (!strcmp(av[1], "move"))
937 return move_worktree(ac - 1, av + 1, prefix);
938 if (!strcmp(av[1], "remove"))
939 return remove_worktree(ac - 1, av + 1, prefix);
940 usage_with_options(worktree_usage, options);