| 1 | #define USE_THE_REPOSITORY_VARIABLE |
| 2 | #define DISABLE_SIGN_COMPARE_WARNINGS |
| 3 | |
| 4 | #include "builtin.h" |
| 5 | #include "abspath.h" |
| 6 | #include "advice.h" |
| 7 | #include "checkout.h" |
| 8 | #include "config.h" |
| 9 | #include "copy.h" |
| 10 | #include "dir.h" |
| 11 | #include "environment.h" |
| 12 | #include "gettext.h" |
| 13 | #include "hex.h" |
| 14 | #include "object-file.h" |
| 15 | #include "object-name.h" |
| 16 | #include "parse-options.h" |
| 17 | #include "path.h" |
| 18 | #include "strvec.h" |
| 19 | #include "branch.h" |
| 20 | #include "read-cache-ll.h" |
| 21 | #include "refs.h" |
| 22 | #include "remote.h" |
| 23 | #include "run-command.h" |
| 24 | #include "hook.h" |
| 25 | #include "sigchain.h" |
| 26 | #include "submodule.h" |
| 27 | #include "utf8.h" |
| 28 | #include "worktree.h" |
| 29 | #include "quote.h" |
| 30 | |
| 31 | #define BUILTIN_WORKTREE_ADD_USAGE \ |
| 32 | N_("git worktree add [-f] [--detach] [--checkout] [--lock [--reason <string>]]\n" \ |
| 33 | " [--orphan] [(-b | -B) <new-branch>] <path> [<commit-ish>]") |
| 34 | |
| 35 | #define BUILTIN_WORKTREE_LIST_USAGE \ |
| 36 | N_("git worktree list [-v | --porcelain [-z]]") |
| 37 | #define BUILTIN_WORKTREE_LOCK_USAGE \ |
| 38 | N_("git worktree lock [--reason <string>] <worktree>") |
| 39 | #define BUILTIN_WORKTREE_MOVE_USAGE \ |
| 40 | N_("git worktree move <worktree> <new-path>") |
| 41 | #define BUILTIN_WORKTREE_PRUNE_USAGE \ |
| 42 | N_("git worktree prune [-n] [-v] [--expire <expire>]") |
| 43 | #define BUILTIN_WORKTREE_REMOVE_USAGE \ |
| 44 | N_("git worktree remove [-f] <worktree>") |
| 45 | #define BUILTIN_WORKTREE_REPAIR_USAGE \ |
| 46 | N_("git worktree repair [<path>...]") |
| 47 | #define BUILTIN_WORKTREE_UNLOCK_USAGE \ |
| 48 | N_("git worktree unlock <worktree>") |
| 49 | |
| 50 | #define WORKTREE_ADD_DWIM_ORPHAN_INFER_TEXT \ |
| 51 | _("No possible source branch, inferring '--orphan'") |
| 52 | |
| 53 | #define WORKTREE_ADD_ORPHAN_WITH_DASH_B_HINT_TEXT \ |
| 54 | _("If you meant to create a worktree containing a new unborn branch\n" \ |
| 55 | "(branch with no commits) for this repository, you can do so\n" \ |
| 56 | "using the --orphan flag:\n" \ |
| 57 | "\n" \ |
| 58 | " git worktree add --orphan -b %s %s\n") |
| 59 | |
| 60 | #define WORKTREE_ADD_ORPHAN_NO_DASH_B_HINT_TEXT \ |
| 61 | _("If you meant to create a worktree containing a new unborn branch\n" \ |
| 62 | "(branch with no commits) for this repository, you can do so\n" \ |
| 63 | "using the --orphan flag:\n" \ |
| 64 | "\n" \ |
| 65 | " git worktree add --orphan %s\n") |
| 66 | |
| 67 | static const char * const git_worktree_usage[] = { |
| 68 | BUILTIN_WORKTREE_ADD_USAGE, |
| 69 | BUILTIN_WORKTREE_LIST_USAGE, |
| 70 | BUILTIN_WORKTREE_LOCK_USAGE, |
| 71 | BUILTIN_WORKTREE_MOVE_USAGE, |
| 72 | BUILTIN_WORKTREE_PRUNE_USAGE, |
| 73 | BUILTIN_WORKTREE_REMOVE_USAGE, |
| 74 | BUILTIN_WORKTREE_REPAIR_USAGE, |
| 75 | BUILTIN_WORKTREE_UNLOCK_USAGE, |
| 76 | NULL |
| 77 | }; |
| 78 | |
| 79 | static const char * const git_worktree_add_usage[] = { |
| 80 | BUILTIN_WORKTREE_ADD_USAGE, |
| 81 | NULL, |
| 82 | }; |
| 83 | |
| 84 | static const char * const git_worktree_list_usage[] = { |
| 85 | BUILTIN_WORKTREE_LIST_USAGE, |
| 86 | NULL |
| 87 | }; |
| 88 | |
| 89 | static const char * const git_worktree_lock_usage[] = { |
| 90 | BUILTIN_WORKTREE_LOCK_USAGE, |
| 91 | NULL |
| 92 | }; |
| 93 | |
| 94 | static const char * const git_worktree_move_usage[] = { |
| 95 | BUILTIN_WORKTREE_MOVE_USAGE, |
| 96 | NULL |
| 97 | }; |
| 98 | |
| 99 | static const char * const git_worktree_prune_usage[] = { |
| 100 | BUILTIN_WORKTREE_PRUNE_USAGE, |
| 101 | NULL |
| 102 | }; |
| 103 | |
| 104 | static const char * const git_worktree_remove_usage[] = { |
| 105 | BUILTIN_WORKTREE_REMOVE_USAGE, |
| 106 | NULL |
| 107 | }; |
| 108 | |
| 109 | static const char * const git_worktree_repair_usage[] = { |
| 110 | BUILTIN_WORKTREE_REPAIR_USAGE, |
| 111 | NULL |
| 112 | }; |
| 113 | |
| 114 | static const char * const git_worktree_unlock_usage[] = { |
| 115 | BUILTIN_WORKTREE_UNLOCK_USAGE, |
| 116 | NULL |
| 117 | }; |
| 118 | |
| 119 | struct add_opts { |
| 120 | int force; |
| 121 | int detach; |
| 122 | int quiet; |
| 123 | int checkout; |
| 124 | int orphan; |
| 125 | int relative_paths; |
| 126 | const char *keep_locked; |
| 127 | }; |
| 128 | |
| 129 | static int show_only; |
| 130 | static int verbose; |
| 131 | static int guess_remote; |
| 132 | static int use_relative_paths; |
| 133 | static timestamp_t expire; |
| 134 | |
| 135 | static int git_worktree_config(const char *var, const char *value, |
| 136 | const struct config_context *ctx, void *cb) |
| 137 | { |
| 138 | if (!strcmp(var, "worktree.guessremote")) { |
| 139 | guess_remote = git_config_bool(var, value); |
| 140 | return 0; |
| 141 | } else if (!strcmp(var, "worktree.userelativepaths")) { |
| 142 | use_relative_paths = git_config_bool(var, value); |
| 143 | return 0; |
| 144 | } |
| 145 | |
| 146 | return git_default_config(var, value, ctx, cb); |
| 147 | } |
| 148 | |
| 149 | static int delete_git_dir(const char *id) |
| 150 | { |
| 151 | struct strbuf sb = STRBUF_INIT; |
| 152 | int ret; |
| 153 | |
| 154 | repo_common_path_append(the_repository, &sb, "worktrees/%s", id); |
| 155 | ret = remove_dir_recursively(&sb, 0); |
| 156 | if (ret < 0 && errno == ENOTDIR) |
| 157 | ret = unlink(sb.buf); |
| 158 | if (ret) |
| 159 | error_errno(_("failed to delete '%s'"), sb.buf); |
| 160 | strbuf_release(&sb); |
| 161 | return ret; |
| 162 | } |
| 163 | |
| 164 | static void delete_worktrees_dir_if_empty(void) |
| 165 | { |
| 166 | char *path = repo_git_path(the_repository, "worktrees"); |
| 167 | rmdir(path); /* ignore failed removal */ |
| 168 | free(path); |
| 169 | } |
| 170 | |
| 171 | static void prune_worktree(const char *id, const char *reason) |
| 172 | { |
| 173 | if (show_only || verbose) |
| 174 | fprintf_ln(stderr, _("Removing %s/%s: %s"), "worktrees", id, reason); |
| 175 | if (!show_only) |
| 176 | delete_git_dir(id); |
| 177 | } |
| 178 | |
| 179 | static int prune_cmp(const void *a, const void *b) |
| 180 | { |
| 181 | const struct string_list_item *x = a; |
| 182 | const struct string_list_item *y = b; |
| 183 | int c; |
| 184 | |
| 185 | if ((c = fspathcmp(x->string, y->string))) |
| 186 | return c; |
| 187 | /* |
| 188 | * paths same; prune_dupes() removes all but the first worktree entry |
| 189 | * having the same path, so sort main worktree ('util' is NULL) above |
| 190 | * linked worktrees ('util' not NULL) since main worktree can't be |
| 191 | * removed |
| 192 | */ |
| 193 | if (!x->util) |
| 194 | return -1; |
| 195 | if (!y->util) |
| 196 | return 1; |
| 197 | /* paths same; sort by .git/worktrees/<id> */ |
| 198 | return strcmp(x->util, y->util); |
| 199 | } |
| 200 | |
| 201 | static void prune_dups(struct string_list *l) |
| 202 | { |
| 203 | int i; |
| 204 | |
| 205 | QSORT(l->items, l->nr, prune_cmp); |
| 206 | for (i = 1; i < l->nr; i++) { |
| 207 | if (!fspathcmp(l->items[i].string, l->items[i - 1].string)) |
| 208 | prune_worktree(l->items[i].util, "duplicate entry"); |
| 209 | } |
| 210 | } |
| 211 | |
| 212 | static void prune_worktrees(void) |
| 213 | { |
| 214 | struct strbuf reason = STRBUF_INIT; |
| 215 | struct strbuf main_path = STRBUF_INIT; |
| 216 | struct string_list kept = STRING_LIST_INIT_DUP; |
| 217 | char *path; |
| 218 | DIR *dir; |
| 219 | struct dirent *d; |
| 220 | |
| 221 | path = repo_git_path(the_repository, "worktrees"); |
| 222 | dir = opendir(path); |
| 223 | free(path); |
| 224 | if (!dir) |
| 225 | return; |
| 226 | while ((d = readdir_skip_dot_and_dotdot(dir)) != NULL) { |
| 227 | char *path; |
| 228 | strbuf_reset(&reason); |
| 229 | if (should_prune_worktree(d->d_name, &reason, &path, expire)) |
| 230 | prune_worktree(d->d_name, reason.buf); |
| 231 | else if (path) |
| 232 | string_list_append_nodup(&kept, path)->util = xstrdup(d->d_name); |
| 233 | } |
| 234 | closedir(dir); |
| 235 | |
| 236 | strbuf_add_absolute_path(&main_path, repo_get_common_dir(the_repository)); |
| 237 | /* massage main worktree absolute path to match 'gitdir' content */ |
| 238 | strbuf_strip_suffix(&main_path, "/."); |
| 239 | string_list_append_nodup(&kept, strbuf_detach(&main_path, NULL)); |
| 240 | prune_dups(&kept); |
| 241 | string_list_clear(&kept, 1); |
| 242 | |
| 243 | if (!show_only) |
| 244 | delete_worktrees_dir_if_empty(); |
| 245 | strbuf_release(&reason); |
| 246 | } |
| 247 | |
| 248 | static int prune(int ac, const char **av, const char *prefix, |
| 249 | struct repository *repo UNUSED) |
| 250 | { |
| 251 | struct option options[] = { |
| 252 | OPT__DRY_RUN(&show_only, N_("do not remove, show only")), |
| 253 | OPT__VERBOSE(&verbose, N_("report pruned working trees")), |
| 254 | OPT_EXPIRY_DATE(0, "expire", &expire, |
| 255 | N_("prune missing working trees older than <time>")), |
| 256 | OPT_END() |
| 257 | }; |
| 258 | |
| 259 | expire = TIME_MAX; |
| 260 | ac = parse_options(ac, av, prefix, options, git_worktree_prune_usage, |
| 261 | 0); |
| 262 | if (ac) |
| 263 | usage_with_options(git_worktree_prune_usage, options); |
| 264 | prune_worktrees(); |
| 265 | return 0; |
| 266 | } |
| 267 | |
| 268 | static char *junk_work_tree; |
| 269 | static char *junk_git_dir; |
| 270 | static int is_junk; |
| 271 | static pid_t junk_pid; |
| 272 | |
| 273 | static void remove_junk(void) |
| 274 | { |
| 275 | struct strbuf sb = STRBUF_INIT; |
| 276 | if (!is_junk || getpid() != junk_pid) |
| 277 | return; |
| 278 | if (junk_git_dir) { |
| 279 | strbuf_addstr(&sb, junk_git_dir); |
| 280 | remove_dir_recursively(&sb, 0); |
| 281 | strbuf_reset(&sb); |
| 282 | } |
| 283 | if (junk_work_tree) { |
| 284 | strbuf_addstr(&sb, junk_work_tree); |
| 285 | remove_dir_recursively(&sb, 0); |
| 286 | } |
| 287 | strbuf_release(&sb); |
| 288 | } |
| 289 | |
| 290 | static void remove_junk_on_signal(int signo) |
| 291 | { |
| 292 | remove_junk(); |
| 293 | sigchain_pop(signo); |
| 294 | raise(signo); |
| 295 | } |
| 296 | |
| 297 | static const char *worktree_basename(const char *path, int *olen) |
| 298 | { |
| 299 | const char *name; |
| 300 | int len; |
| 301 | |
| 302 | len = strlen(path); |
| 303 | while (len && is_dir_sep(path[len - 1])) |
| 304 | len--; |
| 305 | |
| 306 | for (name = path + len - 1; name > path; name--) |
| 307 | if (is_dir_sep(*name)) { |
| 308 | name++; |
| 309 | break; |
| 310 | } |
| 311 | |
| 312 | *olen = len; |
| 313 | return name; |
| 314 | } |
| 315 | |
| 316 | /* check that path is viable location for worktree */ |
| 317 | static void check_candidate_path(const char *path, |
| 318 | int force, |
| 319 | struct worktree **worktrees, |
| 320 | const char *cmd) |
| 321 | { |
| 322 | struct worktree *wt; |
| 323 | int locked; |
| 324 | |
| 325 | if (file_exists(path) && !is_empty_dir(path)) |
| 326 | die(_("'%s' already exists"), path); |
| 327 | |
| 328 | wt = find_worktree_by_path(worktrees, path); |
| 329 | if (!wt) |
| 330 | return; |
| 331 | |
| 332 | locked = !!worktree_lock_reason(wt); |
| 333 | if ((!locked && force) || (locked && force > 1)) { |
| 334 | if (delete_git_dir(wt->id)) |
| 335 | die(_("unusable worktree destination '%s'"), path); |
| 336 | return; |
| 337 | } |
| 338 | |
| 339 | if (locked) |
| 340 | die(_("'%s' is a missing but locked worktree;\nuse '%s -f -f' to override, or 'unlock' and 'prune' or 'remove' to clear"), path, cmd); |
| 341 | else |
| 342 | die(_("'%s' is a missing but already registered worktree;\nuse '%s -f' to override, or 'prune' or 'remove' to clear"), path, cmd); |
| 343 | } |
| 344 | |
| 345 | static void copy_sparse_checkout(const char *worktree_git_dir) |
| 346 | { |
| 347 | char *from_file = repo_git_path(the_repository, "info/sparse-checkout"); |
| 348 | char *to_file = xstrfmt("%s/info/sparse-checkout", worktree_git_dir); |
| 349 | |
| 350 | if (file_exists(from_file)) { |
| 351 | if (safe_create_leading_directories(the_repository, to_file) || |
| 352 | copy_file(to_file, from_file, 0666)) |
| 353 | error(_("failed to copy '%s' to '%s'; sparse-checkout may not work correctly"), |
| 354 | from_file, to_file); |
| 355 | } |
| 356 | |
| 357 | free(from_file); |
| 358 | free(to_file); |
| 359 | } |
| 360 | |
| 361 | static void copy_filtered_worktree_config(const char *worktree_git_dir) |
| 362 | { |
| 363 | char *from_file = repo_git_path(the_repository, "config.worktree"); |
| 364 | char *to_file = xstrfmt("%s/config.worktree", worktree_git_dir); |
| 365 | |
| 366 | if (file_exists(from_file)) { |
| 367 | struct config_set cs = { { 0 } }; |
| 368 | int bare; |
| 369 | |
| 370 | if (safe_create_leading_directories(the_repository, to_file) || |
| 371 | copy_file(to_file, from_file, 0666)) { |
| 372 | error(_("failed to copy worktree config from '%s' to '%s'"), |
| 373 | from_file, to_file); |
| 374 | goto worktree_copy_cleanup; |
| 375 | } |
| 376 | |
| 377 | git_configset_init(&cs); |
| 378 | git_configset_add_file(&cs, from_file); |
| 379 | |
| 380 | if (!git_configset_get_bool(&cs, "core.bare", &bare) && |
| 381 | bare && |
| 382 | repo_config_set_multivar_in_file_gently(the_repository, |
| 383 | to_file, "core.bare", NULL, "true", NULL, 0)) |
| 384 | error(_("failed to unset '%s' in '%s'"), |
| 385 | "core.bare", to_file); |
| 386 | if (!git_configset_get(&cs, "core.worktree") && |
| 387 | repo_config_set_in_file_gently(the_repository, to_file, |
| 388 | "core.worktree", NULL, NULL)) |
| 389 | error(_("failed to unset '%s' in '%s'"), |
| 390 | "core.worktree", to_file); |
| 391 | |
| 392 | git_configset_clear(&cs); |
| 393 | } |
| 394 | |
| 395 | worktree_copy_cleanup: |
| 396 | free(from_file); |
| 397 | free(to_file); |
| 398 | } |
| 399 | |
| 400 | static int checkout_worktree(const struct add_opts *opts, |
| 401 | struct strvec *child_env) |
| 402 | { |
| 403 | struct child_process cp = CHILD_PROCESS_INIT; |
| 404 | cp.git_cmd = 1; |
| 405 | strvec_pushl(&cp.args, "reset", "--hard", "--no-recurse-submodules", NULL); |
| 406 | if (opts->quiet) |
| 407 | strvec_push(&cp.args, "--quiet"); |
| 408 | strvec_pushv(&cp.env, child_env->v); |
| 409 | return run_command(&cp); |
| 410 | } |
| 411 | |
| 412 | static int make_worktree_orphan(const char * ref, const struct add_opts *opts, |
| 413 | struct strvec *child_env) |
| 414 | { |
| 415 | struct strbuf symref = STRBUF_INIT; |
| 416 | struct child_process cp = CHILD_PROCESS_INIT; |
| 417 | |
| 418 | validate_new_branchname(ref, &symref, 0); |
| 419 | strvec_pushl(&cp.args, "symbolic-ref", "HEAD", symref.buf, NULL); |
| 420 | if (opts->quiet) |
| 421 | strvec_push(&cp.args, "--quiet"); |
| 422 | strvec_pushv(&cp.env, child_env->v); |
| 423 | strbuf_release(&symref); |
| 424 | cp.git_cmd = 1; |
| 425 | return run_command(&cp); |
| 426 | } |
| 427 | |
| 428 | /* |
| 429 | * References for worktrees are generally stored in '$GIT_DIR/worktrees/<wt_id>'. |
| 430 | * But when using alternate reference directories, we want to store the worktree |
| 431 | * references in '$ALTERNATE_REFERENCE_DIR/worktrees/<wt_id>'. |
| 432 | * |
| 433 | * Create the necessary folder structure to facilitate the same. But to ensure |
| 434 | * that the former path is still considered a Git directory, add stubs. |
| 435 | */ |
| 436 | static void setup_alternate_ref_dir(struct worktree *wt, const char *wt_git_path) |
| 437 | { |
| 438 | struct strbuf sb = STRBUF_INIT; |
| 439 | char *path; |
| 440 | |
| 441 | path = wt->repo->ref_storage_payload; |
| 442 | if (!path) |
| 443 | return; |
| 444 | |
| 445 | if (!is_absolute_path(path)) |
| 446 | strbuf_addf(&sb, "%s/", wt->repo->commondir); |
| 447 | |
| 448 | strbuf_addf(&sb, "%s/worktrees", path); |
| 449 | safe_create_dir(wt->repo, sb.buf, 1); |
| 450 | strbuf_addf(&sb, "/%s", wt->id); |
| 451 | safe_create_dir(wt->repo, sb.buf, 1); |
| 452 | strbuf_reset(&sb); |
| 453 | |
| 454 | strbuf_addf(&sb, "this worktree stores references in %s/worktrees/%s", |
| 455 | path, wt->id); |
| 456 | refs_create_refdir_stubs(wt->repo, wt_git_path, sb.buf); |
| 457 | |
| 458 | strbuf_release(&sb); |
| 459 | } |
| 460 | |
| 461 | static int add_worktree(const char *path, const char *refname, |
| 462 | const struct add_opts *opts) |
| 463 | { |
| 464 | struct strbuf sb_git = STRBUF_INIT, sb_repo = STRBUF_INIT; |
| 465 | struct strbuf sb = STRBUF_INIT; |
| 466 | const char *name; |
| 467 | struct strvec child_env = STRVEC_INIT; |
| 468 | unsigned int counter = 0; |
| 469 | int len, ret; |
| 470 | struct strbuf symref = STRBUF_INIT; |
| 471 | struct commit *commit = NULL; |
| 472 | int is_branch = 0; |
| 473 | struct strbuf sb_name = STRBUF_INIT; |
| 474 | struct worktree **worktrees, *wt = NULL; |
| 475 | struct ref_store *wt_refs; |
| 476 | struct repo_config_values *cfg = repo_config_values(the_repository); |
| 477 | |
| 478 | worktrees = get_worktrees(); |
| 479 | check_candidate_path(path, opts->force, worktrees, "add"); |
| 480 | free_worktrees(worktrees); |
| 481 | worktrees = NULL; |
| 482 | |
| 483 | /* is 'refname' a branch or commit? */ |
| 484 | if (!opts->detach && !check_branch_ref(&symref, refname) && |
| 485 | refs_ref_exists(get_main_ref_store(the_repository), symref.buf)) { |
| 486 | is_branch = 1; |
| 487 | if (!opts->force) |
| 488 | die_if_checked_out(symref.buf, 0); |
| 489 | } |
| 490 | commit = lookup_commit_reference_by_name(refname); |
| 491 | if (!commit && !opts->orphan) |
| 492 | die(_("invalid reference: %s"), refname); |
| 493 | |
| 494 | name = worktree_basename(path, &len); |
| 495 | strbuf_add(&sb, name, path + len - name); |
| 496 | sanitize_refname_component(sb.buf, &sb_name); |
| 497 | if (!sb_name.len) |
| 498 | BUG("How come '%s' becomes empty after sanitization?", sb.buf); |
| 499 | strbuf_reset(&sb); |
| 500 | name = sb_name.buf; |
| 501 | repo_git_path_replace(the_repository, &sb_repo, "worktrees/%s", name); |
| 502 | len = sb_repo.len; |
| 503 | if (safe_create_leading_directories_const(the_repository, sb_repo.buf)) |
| 504 | die_errno(_("could not create leading directories of '%s'"), |
| 505 | sb_repo.buf); |
| 506 | |
| 507 | while (mkdir(sb_repo.buf, 0777)) { |
| 508 | counter++; |
| 509 | if ((errno != EEXIST) || !counter /* overflow */) |
| 510 | die_errno(_("could not create directory of '%s'"), |
| 511 | sb_repo.buf); |
| 512 | strbuf_setlen(&sb_repo, len); |
| 513 | strbuf_addf(&sb_repo, "%d", counter); |
| 514 | } |
| 515 | name = strrchr(sb_repo.buf, '/') + 1; |
| 516 | |
| 517 | junk_pid = getpid(); |
| 518 | atexit(remove_junk); |
| 519 | sigchain_push_common(remove_junk_on_signal); |
| 520 | |
| 521 | junk_git_dir = xstrdup(sb_repo.buf); |
| 522 | is_junk = 1; |
| 523 | |
| 524 | /* |
| 525 | * lock the incomplete repo so prune won't delete it, unlock |
| 526 | * after the preparation is over. |
| 527 | */ |
| 528 | strbuf_addf(&sb, "%s/locked", sb_repo.buf); |
| 529 | if (opts->keep_locked) |
| 530 | write_file(sb.buf, "%s", opts->keep_locked); |
| 531 | else |
| 532 | write_file(sb.buf, _("initializing")); |
| 533 | |
| 534 | strbuf_addf(&sb_git, "%s/.git", path); |
| 535 | if (safe_create_leading_directories_const(the_repository, sb_git.buf)) |
| 536 | die_errno(_("could not create leading directories of '%s'"), |
| 537 | sb_git.buf); |
| 538 | junk_work_tree = xstrdup(path); |
| 539 | |
| 540 | strbuf_reset(&sb); |
| 541 | strbuf_addf(&sb, "%s/gitdir", sb_repo.buf); |
| 542 | write_worktree_linking_files(sb_git.buf, sb.buf, opts->relative_paths); |
| 543 | strbuf_reset(&sb); |
| 544 | strbuf_addf(&sb, "%s/commondir", sb_repo.buf); |
| 545 | write_file(sb.buf, "../.."); |
| 546 | |
| 547 | /* |
| 548 | * Set up the ref store of the worktree and create the HEAD reference. |
| 549 | */ |
| 550 | wt = get_linked_worktree(name, 1); |
| 551 | if (!wt) { |
| 552 | ret = error(_("could not find created worktree '%s'"), name); |
| 553 | goto done; |
| 554 | } |
| 555 | setup_alternate_ref_dir(wt, sb_repo.buf); |
| 556 | wt_refs = get_worktree_ref_store(wt); |
| 557 | |
| 558 | ret = ref_store_create_on_disk(wt_refs, REF_STORE_CREATE_ON_DISK_IS_WORKTREE, &sb); |
| 559 | if (ret) |
| 560 | goto done; |
| 561 | |
| 562 | if (!is_branch && commit) |
| 563 | ret = refs_update_ref(wt_refs, NULL, "HEAD", &commit->object.oid, |
| 564 | NULL, 0, UPDATE_REFS_MSG_ON_ERR); |
| 565 | else |
| 566 | ret = refs_update_symref(wt_refs, "HEAD", symref.buf, NULL); |
| 567 | if (ret) |
| 568 | goto done; |
| 569 | |
| 570 | /* |
| 571 | * If the current worktree has sparse-checkout enabled, then copy |
| 572 | * the sparse-checkout patterns from the current worktree. |
| 573 | */ |
| 574 | if (cfg->apply_sparse_checkout) |
| 575 | copy_sparse_checkout(sb_repo.buf); |
| 576 | |
| 577 | /* |
| 578 | * If we are using worktree config, then copy all current config |
| 579 | * values from the current worktree into the new one, that way the |
| 580 | * new worktree behaves the same as this one. |
| 581 | */ |
| 582 | if (the_repository->repository_format_worktree_config) |
| 583 | copy_filtered_worktree_config(sb_repo.buf); |
| 584 | |
| 585 | strvec_pushf(&child_env, "%s=%s", GIT_DIR_ENVIRONMENT, sb_git.buf); |
| 586 | strvec_pushf(&child_env, "%s=%s", GIT_WORK_TREE_ENVIRONMENT, path); |
| 587 | |
| 588 | if (opts->orphan && |
| 589 | (ret = make_worktree_orphan(refname, opts, &child_env))) |
| 590 | goto done; |
| 591 | |
| 592 | if (opts->checkout && |
| 593 | (ret = checkout_worktree(opts, &child_env))) |
| 594 | goto done; |
| 595 | |
| 596 | is_junk = 0; |
| 597 | FREE_AND_NULL(junk_work_tree); |
| 598 | FREE_AND_NULL(junk_git_dir); |
| 599 | |
| 600 | done: |
| 601 | if (ret || !opts->keep_locked) { |
| 602 | strbuf_reset(&sb); |
| 603 | strbuf_addf(&sb, "%s/locked", sb_repo.buf); |
| 604 | unlink_or_warn(sb.buf); |
| 605 | } |
| 606 | |
| 607 | /* |
| 608 | * Hook failure does not warrant worktree deletion, so run hook after |
| 609 | * is_junk is cleared, but do return appropriate code when hook fails. |
| 610 | */ |
| 611 | if (!ret && opts->checkout && !opts->orphan) { |
| 612 | struct run_hooks_opt opt = RUN_HOOKS_OPT_INIT_FORCE_SERIAL; |
| 613 | |
| 614 | strvec_pushl(&opt.env, "GIT_DIR", "GIT_WORK_TREE", NULL); |
| 615 | strvec_pushl(&opt.args, |
| 616 | oid_to_hex(null_oid(the_hash_algo)), |
| 617 | oid_to_hex(&commit->object.oid), |
| 618 | "1", |
| 619 | NULL); |
| 620 | opt.dir = path; |
| 621 | |
| 622 | ret = run_hooks_opt(the_repository, "post-checkout", &opt); |
| 623 | } |
| 624 | |
| 625 | strvec_clear(&child_env); |
| 626 | strbuf_release(&sb); |
| 627 | strbuf_release(&symref); |
| 628 | strbuf_release(&sb_repo); |
| 629 | strbuf_release(&sb_git); |
| 630 | strbuf_release(&sb_name); |
| 631 | free_worktree(wt); |
| 632 | return ret; |
| 633 | } |
| 634 | |
| 635 | static void print_preparing_worktree_line(int detach, |
| 636 | const char *branch, |
| 637 | const char *new_branch, |
| 638 | int force_new_branch) |
| 639 | { |
| 640 | if (force_new_branch) { |
| 641 | struct commit *commit = lookup_commit_reference_by_name(new_branch); |
| 642 | if (!commit) |
| 643 | fprintf_ln(stderr, _("Preparing worktree (new branch '%s')"), new_branch); |
| 644 | else |
| 645 | fprintf_ln(stderr, _("Preparing worktree (resetting branch '%s'; was at %s)"), |
| 646 | new_branch, |
| 647 | repo_find_unique_abbrev(the_repository, &commit->object.oid, DEFAULT_ABBREV)); |
| 648 | } else if (new_branch) { |
| 649 | fprintf_ln(stderr, _("Preparing worktree (new branch '%s')"), new_branch); |
| 650 | } else { |
| 651 | struct strbuf s = STRBUF_INIT; |
| 652 | if (!detach && !check_branch_ref(&s, branch) && |
| 653 | refs_ref_exists(get_main_ref_store(the_repository), s.buf)) |
| 654 | fprintf_ln(stderr, _("Preparing worktree (checking out '%s')"), |
| 655 | branch); |
| 656 | else { |
| 657 | struct commit *commit = lookup_commit_reference_by_name(branch); |
| 658 | if (!commit) |
| 659 | BUG("unreachable: invalid reference: %s", branch); |
| 660 | fprintf_ln(stderr, _("Preparing worktree (detached HEAD %s)"), |
| 661 | repo_find_unique_abbrev(the_repository, &commit->object.oid, DEFAULT_ABBREV)); |
| 662 | } |
| 663 | strbuf_release(&s); |
| 664 | } |
| 665 | } |
| 666 | |
| 667 | /** |
| 668 | * Callback to short circuit iteration over refs on the first reference |
| 669 | * corresponding to a valid oid. |
| 670 | * |
| 671 | * Returns 0 on failure and non-zero on success. |
| 672 | */ |
| 673 | static int first_valid_ref(const struct reference *ref UNUSED, void *cb_data UNUSED) |
| 674 | { |
| 675 | return 1; |
| 676 | } |
| 677 | |
| 678 | /** |
| 679 | * Verifies HEAD and determines whether there exist any valid local references. |
| 680 | * |
| 681 | * - Checks whether HEAD points to a valid reference. |
| 682 | * |
| 683 | * - Checks whether any valid local branches exist. |
| 684 | * |
| 685 | * - Emits a warning if there exist any valid branches but HEAD does not point |
| 686 | * to a valid reference. |
| 687 | * |
| 688 | * Returns 1 if any of the previous checks are true, otherwise returns 0. |
| 689 | */ |
| 690 | static int can_use_local_refs(const struct add_opts *opts) |
| 691 | { |
| 692 | if (refs_head_ref(get_main_ref_store(the_repository), first_valid_ref, NULL)) { |
| 693 | return 1; |
| 694 | } else if (refs_for_each_branch_ref(get_main_ref_store(the_repository), first_valid_ref, NULL)) { |
| 695 | if (!opts->quiet) |
| 696 | warning(_("HEAD points to an invalid (or orphaned) reference.\n")); |
| 697 | return 1; |
| 698 | } |
| 699 | return 0; |
| 700 | } |
| 701 | |
| 702 | /** |
| 703 | * Reports whether the necessary flags were set and whether the repository has |
| 704 | * remote references to attempt DWIM tracking of upstream branches. |
| 705 | * |
| 706 | * 1. Checks that `--guess-remote` was used or `worktree.guessRemote = true`. |
| 707 | * |
| 708 | * 2. Checks whether any valid remote branches exist. |
| 709 | * |
| 710 | * 3. Checks that there exists at least one remote and emits a warning/error |
| 711 | * if both checks 1. and 2. are false (can be bypassed with `--force`). |
| 712 | * |
| 713 | * Returns 1 if checks 1. and 2. are true, otherwise 0. |
| 714 | */ |
| 715 | static int can_use_remote_refs(const struct add_opts *opts) |
| 716 | { |
| 717 | if (!guess_remote) { |
| 718 | return 0; |
| 719 | } else if (refs_for_each_remote_ref(get_main_ref_store(the_repository), first_valid_ref, NULL)) { |
| 720 | return 1; |
| 721 | } else if (!opts->force && remote_get(NULL)) { |
| 722 | die(_("No local or remote refs exist despite at least one remote\n" |
| 723 | "present, stopping; use 'add -f' to override or fetch a remote first")); |
| 724 | } |
| 725 | return 0; |
| 726 | } |
| 727 | |
| 728 | /** |
| 729 | * Determines whether `--orphan` should be inferred in the evaluation of |
| 730 | * `worktree add path/` or `worktree add -b branch path/` and emits an error |
| 731 | * if the supplied arguments would produce an illegal combination when the |
| 732 | * `--orphan` flag is included. |
| 733 | * |
| 734 | * `opts` and `opt_track` contain the other options & flags supplied to the |
| 735 | * command. |
| 736 | * |
| 737 | * remote determines whether to check `can_use_remote_refs()` or not. This |
| 738 | * is primarily to differentiate between the basic `add` DWIM and `add -b`. |
| 739 | * |
| 740 | * Returns 1 when inferring `--orphan`, 0 otherwise, and emits an error when |
| 741 | * `--orphan` is inferred but doing so produces an illegal combination of |
| 742 | * options and flags. Additionally produces an error when remote refs are |
| 743 | * checked and the repo is in a state that looks like the user added a remote |
| 744 | * but forgot to fetch (and did not override the warning with -f). |
| 745 | */ |
| 746 | static int dwim_orphan(const struct add_opts *opts, int opt_track, int remote) |
| 747 | { |
| 748 | if (can_use_local_refs(opts)) { |
| 749 | return 0; |
| 750 | } else if (remote && can_use_remote_refs(opts)) { |
| 751 | return 0; |
| 752 | } else if (!opts->quiet) { |
| 753 | fprintf_ln(stderr, WORKTREE_ADD_DWIM_ORPHAN_INFER_TEXT); |
| 754 | } |
| 755 | |
| 756 | if (opt_track) { |
| 757 | die(_("options '%s' and '%s' cannot be used together"), |
| 758 | "--orphan", "--track"); |
| 759 | } else if (!opts->checkout) { |
| 760 | die(_("options '%s' and '%s' cannot be used together"), |
| 761 | "--orphan", "--no-checkout"); |
| 762 | } |
| 763 | return 1; |
| 764 | } |
| 765 | |
| 766 | static char *dwim_branch(const char *path, char **new_branch) |
| 767 | { |
| 768 | int n; |
| 769 | int branch_exists; |
| 770 | const char *s = worktree_basename(path, &n); |
| 771 | char *branchname = xstrndup(s, n); |
| 772 | struct strbuf ref = STRBUF_INIT; |
| 773 | |
| 774 | branch_exists = !check_branch_ref(&ref, branchname) && |
| 775 | refs_ref_exists(get_main_ref_store(the_repository), |
| 776 | ref.buf); |
| 777 | strbuf_release(&ref); |
| 778 | if (branch_exists) |
| 779 | return branchname; |
| 780 | |
| 781 | *new_branch = branchname; |
| 782 | if (guess_remote) { |
| 783 | struct object_id oid; |
| 784 | char *remote = unique_tracking_name(*new_branch, &oid, NULL); |
| 785 | return remote; |
| 786 | } |
| 787 | return NULL; |
| 788 | } |
| 789 | |
| 790 | static int add(int ac, const char **av, const char *prefix, |
| 791 | struct repository *repo UNUSED) |
| 792 | { |
| 793 | struct add_opts opts; |
| 794 | const char *new_branch_force = NULL; |
| 795 | char *path; |
| 796 | const char *branch; |
| 797 | char *branch_to_free = NULL; |
| 798 | char *new_branch_to_free = NULL; |
| 799 | const char *new_branch = NULL; |
| 800 | char *opt_track = NULL; |
| 801 | const char *lock_reason = NULL; |
| 802 | int keep_locked = 0; |
| 803 | int used_new_branch_options; |
| 804 | struct option options[] = { |
| 805 | OPT__FORCE(&opts.force, |
| 806 | N_("checkout <branch> even if already checked out in other worktree"), |
| 807 | PARSE_OPT_NOCOMPLETE), |
| 808 | OPT_STRING('b', NULL, &new_branch, N_("branch"), |
| 809 | N_("create a new branch")), |
| 810 | OPT_STRING('B', NULL, &new_branch_force, N_("branch"), |
| 811 | N_("create or reset a branch")), |
| 812 | OPT_BOOL(0, "orphan", &opts.orphan, N_("create unborn branch")), |
| 813 | OPT_BOOL('d', "detach", &opts.detach, N_("detach HEAD at named commit")), |
| 814 | OPT_BOOL(0, "checkout", &opts.checkout, N_("populate the new working tree")), |
| 815 | OPT_BOOL(0, "lock", &keep_locked, N_("keep the new working tree locked")), |
| 816 | OPT_STRING(0, "reason", &lock_reason, N_("string"), |
| 817 | N_("reason for locking")), |
| 818 | OPT__QUIET(&opts.quiet, N_("suppress progress reporting")), |
| 819 | OPT_PASSTHRU(0, "track", &opt_track, NULL, |
| 820 | N_("set up tracking mode (see git-branch(1))"), |
| 821 | PARSE_OPT_NOARG | PARSE_OPT_OPTARG), |
| 822 | OPT_BOOL(0, "guess-remote", &guess_remote, |
| 823 | N_("try to match the new branch name with a remote-tracking branch")), |
| 824 | OPT_BOOL(0, "relative-paths", &opts.relative_paths, |
| 825 | N_("use relative paths for worktrees")), |
| 826 | OPT_END() |
| 827 | }; |
| 828 | int ret; |
| 829 | |
| 830 | memset(&opts, 0, sizeof(opts)); |
| 831 | opts.checkout = 1; |
| 832 | opts.relative_paths = use_relative_paths; |
| 833 | ac = parse_options(ac, av, prefix, options, git_worktree_add_usage, 0); |
| 834 | if (!!opts.detach + !!new_branch + !!new_branch_force > 1) |
| 835 | die(_("options '%s', '%s', and '%s' cannot be used together"), "-b", "-B", "--detach"); |
| 836 | if (opts.detach && opts.orphan) |
| 837 | die(_("options '%s' and '%s' cannot be used together"), |
| 838 | "--orphan", "--detach"); |
| 839 | if (opts.orphan && opt_track) |
| 840 | die(_("options '%s' and '%s' cannot be used together"), |
| 841 | "--orphan", "--track"); |
| 842 | if (opts.orphan && !opts.checkout) |
| 843 | die(_("options '%s' and '%s' cannot be used together"), |
| 844 | "--orphan", "--no-checkout"); |
| 845 | if (opts.orphan && ac == 2) |
| 846 | die(_("option '%s' and commit-ish cannot be used together"), |
| 847 | "--orphan"); |
| 848 | if (lock_reason && !keep_locked) |
| 849 | die(_("the option '%s' requires '%s'"), "--reason", "--lock"); |
| 850 | if (lock_reason) |
| 851 | opts.keep_locked = lock_reason; |
| 852 | else if (keep_locked) |
| 853 | opts.keep_locked = _("added with --lock"); |
| 854 | |
| 855 | if (ac < 1 || ac > 2) |
| 856 | usage_with_options(git_worktree_add_usage, options); |
| 857 | |
| 858 | path = prefix_filename(prefix, av[0]); |
| 859 | branch = ac < 2 ? "HEAD" : av[1]; |
| 860 | used_new_branch_options = new_branch || new_branch_force; |
| 861 | |
| 862 | if (!strcmp(branch, "-")) |
| 863 | branch = "@{-1}"; |
| 864 | |
| 865 | if (new_branch_force) { |
| 866 | struct strbuf symref = STRBUF_INIT; |
| 867 | |
| 868 | new_branch = new_branch_force; |
| 869 | |
| 870 | if (!opts.force && |
| 871 | !check_branch_ref(&symref, new_branch) && |
| 872 | refs_ref_exists(get_main_ref_store(the_repository), symref.buf)) |
| 873 | die_if_checked_out(symref.buf, 0); |
| 874 | strbuf_release(&symref); |
| 875 | } |
| 876 | |
| 877 | if (opts.orphan && !new_branch) { |
| 878 | int n; |
| 879 | const char *s = worktree_basename(path, &n); |
| 880 | new_branch = new_branch_to_free = xstrndup(s, n); |
| 881 | } else if (opts.orphan) { |
| 882 | ; /* no-op */ |
| 883 | } else if (opts.detach) { |
| 884 | /* Check HEAD */ |
| 885 | if (!strcmp(branch, "HEAD")) |
| 886 | can_use_local_refs(&opts); |
| 887 | } else if (ac < 2 && new_branch) { |
| 888 | /* DWIM: Infer --orphan when repo has no refs. */ |
| 889 | opts.orphan = dwim_orphan(&opts, !!opt_track, 0); |
| 890 | } else if (ac < 2) { |
| 891 | /* DWIM: Guess branch name from path. */ |
| 892 | char *s = dwim_branch(path, &new_branch_to_free); |
| 893 | if (s) |
| 894 | branch = branch_to_free = s; |
| 895 | new_branch = new_branch_to_free; |
| 896 | |
| 897 | /* DWIM: Infer --orphan when repo has no refs. */ |
| 898 | opts.orphan = (!s) && dwim_orphan(&opts, !!opt_track, 1); |
| 899 | } else if (ac == 2) { |
| 900 | struct object_id oid; |
| 901 | struct commit *commit; |
| 902 | char *remote; |
| 903 | |
| 904 | commit = lookup_commit_reference_by_name(branch); |
| 905 | if (!commit) { |
| 906 | remote = unique_tracking_name(branch, &oid, NULL); |
| 907 | if (remote) { |
| 908 | new_branch = branch; |
| 909 | branch = new_branch_to_free = remote; |
| 910 | } |
| 911 | } |
| 912 | |
| 913 | if (!strcmp(branch, "HEAD")) |
| 914 | can_use_local_refs(&opts); |
| 915 | |
| 916 | } |
| 917 | |
| 918 | if (!opts.orphan && !lookup_commit_reference_by_name(branch)) { |
| 919 | int attempt_hint = !opts.quiet && (ac < 2); |
| 920 | if (attempt_hint && used_new_branch_options) { |
| 921 | advise_if_enabled(ADVICE_WORKTREE_ADD_ORPHAN, |
| 922 | WORKTREE_ADD_ORPHAN_WITH_DASH_B_HINT_TEXT, |
| 923 | new_branch, path); |
| 924 | } else if (attempt_hint) { |
| 925 | advise_if_enabled(ADVICE_WORKTREE_ADD_ORPHAN, |
| 926 | WORKTREE_ADD_ORPHAN_NO_DASH_B_HINT_TEXT, path); |
| 927 | } |
| 928 | die(_("invalid reference: %s"), branch); |
| 929 | } |
| 930 | |
| 931 | if (!opts.quiet) |
| 932 | print_preparing_worktree_line(opts.detach, branch, new_branch, !!new_branch_force); |
| 933 | |
| 934 | if (opts.orphan) { |
| 935 | branch = new_branch; |
| 936 | } else if (new_branch) { |
| 937 | struct child_process cp = CHILD_PROCESS_INIT; |
| 938 | cp.git_cmd = 1; |
| 939 | strvec_push(&cp.args, "branch"); |
| 940 | if (new_branch_force) |
| 941 | strvec_push(&cp.args, "--force"); |
| 942 | if (opts.quiet) |
| 943 | strvec_push(&cp.args, "--quiet"); |
| 944 | strvec_push(&cp.args, new_branch); |
| 945 | strvec_push(&cp.args, branch); |
| 946 | if (opt_track) |
| 947 | strvec_push(&cp.args, opt_track); |
| 948 | if (run_command(&cp)) |
| 949 | return -1; |
| 950 | branch = new_branch; |
| 951 | } else if (opt_track) { |
| 952 | die(_("--[no-]track can only be used if a new branch is created")); |
| 953 | } |
| 954 | |
| 955 | ret = add_worktree(path, branch, &opts); |
| 956 | free(path); |
| 957 | free(opt_track); |
| 958 | free(branch_to_free); |
| 959 | free(new_branch_to_free); |
| 960 | return ret; |
| 961 | } |
| 962 | |
| 963 | static void show_worktree_porcelain(struct worktree *wt, int line_terminator) |
| 964 | { |
| 965 | const char *reason; |
| 966 | |
| 967 | printf("worktree %s%c", wt->path, line_terminator); |
| 968 | if (wt->is_bare) |
| 969 | printf("bare%c", line_terminator); |
| 970 | else { |
| 971 | printf("HEAD %s%c", oid_to_hex(&wt->head_oid), line_terminator); |
| 972 | if (wt->is_detached) |
| 973 | printf("detached%c", line_terminator); |
| 974 | else if (wt->head_ref) |
| 975 | printf("branch %s%c", wt->head_ref, line_terminator); |
| 976 | } |
| 977 | |
| 978 | reason = worktree_lock_reason(wt); |
| 979 | if (reason) { |
| 980 | fputs("locked", stdout); |
| 981 | if (*reason) { |
| 982 | fputc(' ', stdout); |
| 983 | write_name_quoted(reason, stdout, line_terminator); |
| 984 | } else { |
| 985 | fputc(line_terminator, stdout); |
| 986 | } |
| 987 | } |
| 988 | |
| 989 | reason = worktree_prune_reason(wt, expire); |
| 990 | if (reason) |
| 991 | printf("prunable %s%c", reason, line_terminator); |
| 992 | |
| 993 | fputc(line_terminator, stdout); |
| 994 | } |
| 995 | |
| 996 | struct worktree_display { |
| 997 | char *path; |
| 998 | int width; |
| 999 | }; |
| 1000 | |
| 1001 | static void show_worktree(struct worktree *wt, struct worktree_display *display, |
| 1002 | int path_maxwidth, int abbrev_len) |
| 1003 | { |
| 1004 | struct strbuf sb = STRBUF_INIT; |
| 1005 | const char *reason; |
| 1006 | |
| 1007 | strbuf_addf(&sb, "%s%*s", display->path, 1 + path_maxwidth - display->width, ""); |
| 1008 | if (wt->is_bare) |
| 1009 | strbuf_addstr(&sb, "(bare)"); |
| 1010 | else { |
| 1011 | strbuf_addf(&sb, "%-*s ", abbrev_len, |
| 1012 | repo_find_unique_abbrev(the_repository, &wt->head_oid, DEFAULT_ABBREV)); |
| 1013 | if (wt->is_detached) |
| 1014 | strbuf_addstr(&sb, "(detached HEAD)"); |
| 1015 | else if (wt->head_ref) { |
| 1016 | char *ref = refs_shorten_unambiguous_ref(get_main_ref_store(the_repository), |
| 1017 | wt->head_ref, |
| 1018 | 0); |
| 1019 | strbuf_addf(&sb, "[%s]", ref); |
| 1020 | free(ref); |
| 1021 | } else |
| 1022 | strbuf_addstr(&sb, "(error)"); |
| 1023 | } |
| 1024 | |
| 1025 | reason = worktree_lock_reason(wt); |
| 1026 | if (verbose && reason && *reason) |
| 1027 | strbuf_addf(&sb, "\n\tlocked: %s", reason); |
| 1028 | else if (reason) |
| 1029 | strbuf_addstr(&sb, " locked"); |
| 1030 | |
| 1031 | reason = worktree_prune_reason(wt, expire); |
| 1032 | if (verbose && reason) |
| 1033 | strbuf_addf(&sb, "\n\tprunable: %s", reason); |
| 1034 | else if (reason) |
| 1035 | strbuf_addstr(&sb, " prunable"); |
| 1036 | |
| 1037 | printf("%s\n", sb.buf); |
| 1038 | strbuf_release(&sb); |
| 1039 | } |
| 1040 | |
| 1041 | static void measure_widths(struct worktree **wt, int *abbrev, |
| 1042 | struct worktree_display **d, int *maxwidth) |
| 1043 | { |
| 1044 | int i, display_alloc = 0; |
| 1045 | struct worktree_display *display = NULL; |
| 1046 | struct strbuf buf = STRBUF_INIT; |
| 1047 | |
| 1048 | for (i = 0; wt[i]; i++) { |
| 1049 | int sha1_len; |
| 1050 | ALLOC_GROW(display, i + 1, display_alloc); |
| 1051 | quote_path(wt[i]->path, NULL, &buf, 0); |
| 1052 | display[i].width = utf8_strwidth(buf.buf); |
| 1053 | display[i].path = strbuf_detach(&buf, NULL); |
| 1054 | |
| 1055 | if (display[i].width > *maxwidth) |
| 1056 | *maxwidth = display[i].width; |
| 1057 | sha1_len = strlen(repo_find_unique_abbrev(the_repository, &wt[i]->head_oid, *abbrev)); |
| 1058 | if (sha1_len > *abbrev) |
| 1059 | *abbrev = sha1_len; |
| 1060 | } |
| 1061 | *d = display; |
| 1062 | } |
| 1063 | |
| 1064 | static int pathcmp(const void *a_, const void *b_) |
| 1065 | { |
| 1066 | const struct worktree *const *a = a_; |
| 1067 | const struct worktree *const *b = b_; |
| 1068 | return fspathcmp((*a)->path, (*b)->path); |
| 1069 | } |
| 1070 | |
| 1071 | static void pathsort(struct worktree **wt) |
| 1072 | { |
| 1073 | int n = 0; |
| 1074 | struct worktree **p = wt; |
| 1075 | |
| 1076 | while (*p++) |
| 1077 | n++; |
| 1078 | QSORT(wt, n, pathcmp); |
| 1079 | } |
| 1080 | |
| 1081 | static int list(int ac, const char **av, const char *prefix, |
| 1082 | struct repository *repo UNUSED) |
| 1083 | { |
| 1084 | int porcelain = 0; |
| 1085 | int line_terminator = '\n'; |
| 1086 | |
| 1087 | struct option options[] = { |
| 1088 | OPT_BOOL(0, "porcelain", &porcelain, N_("machine-readable output")), |
| 1089 | OPT__VERBOSE(&verbose, N_("show extended annotations and reasons, if available")), |
| 1090 | OPT_EXPIRY_DATE(0, "expire", &expire, |
| 1091 | N_("add 'prunable' annotation to missing worktrees older than <time>")), |
| 1092 | OPT_SET_INT('z', NULL, &line_terminator, |
| 1093 | N_("terminate records with a NUL character"), '\0'), |
| 1094 | OPT_END() |
| 1095 | }; |
| 1096 | |
| 1097 | expire = TIME_MAX; |
| 1098 | ac = parse_options(ac, av, prefix, options, git_worktree_list_usage, 0); |
| 1099 | if (ac) |
| 1100 | usage_with_options(git_worktree_list_usage, options); |
| 1101 | else if (verbose && porcelain) |
| 1102 | die(_("options '%s' and '%s' cannot be used together"), "--verbose", "--porcelain"); |
| 1103 | else if (!line_terminator && !porcelain) |
| 1104 | die(_("the option '%s' requires '%s'"), "-z", "--porcelain"); |
| 1105 | else { |
| 1106 | struct worktree **worktrees = get_worktrees(); |
| 1107 | int path_maxwidth = 0, abbrev = DEFAULT_ABBREV, i; |
| 1108 | struct worktree_display *display = NULL; |
| 1109 | |
| 1110 | /* sort worktrees by path but keep main worktree at top */ |
| 1111 | pathsort(worktrees + 1); |
| 1112 | |
| 1113 | if (!porcelain) |
| 1114 | measure_widths(worktrees, &abbrev, |
| 1115 | &display, &path_maxwidth); |
| 1116 | |
| 1117 | for (i = 0; worktrees[i]; i++) { |
| 1118 | if (porcelain) |
| 1119 | show_worktree_porcelain(worktrees[i], |
| 1120 | line_terminator); |
| 1121 | else |
| 1122 | show_worktree(worktrees[i], |
| 1123 | &display[i], path_maxwidth, abbrev); |
| 1124 | } |
| 1125 | for (i = 0; display && worktrees[i]; i++) |
| 1126 | free(display[i].path); |
| 1127 | free(display); |
| 1128 | free_worktrees(worktrees); |
| 1129 | } |
| 1130 | return 0; |
| 1131 | } |
| 1132 | |
| 1133 | static int lock_worktree(int ac, const char **av, const char *prefix, |
| 1134 | struct repository *repo UNUSED) |
| 1135 | { |
| 1136 | const char *reason = "", *old_reason; |
| 1137 | struct option options[] = { |
| 1138 | OPT_STRING(0, "reason", &reason, N_("string"), |
| 1139 | N_("reason for locking")), |
| 1140 | OPT_END() |
| 1141 | }; |
| 1142 | struct worktree **worktrees, *wt; |
| 1143 | char *path; |
| 1144 | |
| 1145 | ac = parse_options(ac, av, prefix, options, git_worktree_lock_usage, 0); |
| 1146 | if (ac != 1) |
| 1147 | usage_with_options(git_worktree_lock_usage, options); |
| 1148 | |
| 1149 | worktrees = get_worktrees(); |
| 1150 | wt = find_worktree(worktrees, prefix, av[0]); |
| 1151 | if (!wt) |
| 1152 | die(_("'%s' is not a working tree"), av[0]); |
| 1153 | if (is_main_worktree(wt)) |
| 1154 | die(_("The main working tree cannot be locked or unlocked")); |
| 1155 | |
| 1156 | old_reason = worktree_lock_reason(wt); |
| 1157 | if (old_reason) { |
| 1158 | if (*old_reason) |
| 1159 | die(_("'%s' is already locked, reason: %s"), |
| 1160 | av[0], old_reason); |
| 1161 | die(_("'%s' is already locked"), av[0]); |
| 1162 | } |
| 1163 | |
| 1164 | path = repo_common_path(the_repository, "worktrees/%s/locked", wt->id); |
| 1165 | write_file(path, "%s", reason); |
| 1166 | |
| 1167 | free_worktrees(worktrees); |
| 1168 | free(path); |
| 1169 | return 0; |
| 1170 | } |
| 1171 | |
| 1172 | static int unlock_worktree(int ac, const char **av, const char *prefix, |
| 1173 | struct repository *repo UNUSED) |
| 1174 | { |
| 1175 | struct option options[] = { |
| 1176 | OPT_END() |
| 1177 | }; |
| 1178 | struct worktree **worktrees, *wt; |
| 1179 | char *path; |
| 1180 | int ret; |
| 1181 | |
| 1182 | ac = parse_options(ac, av, prefix, options, git_worktree_unlock_usage, 0); |
| 1183 | if (ac != 1) |
| 1184 | usage_with_options(git_worktree_unlock_usage, options); |
| 1185 | |
| 1186 | worktrees = get_worktrees(); |
| 1187 | wt = find_worktree(worktrees, prefix, av[0]); |
| 1188 | if (!wt) |
| 1189 | die(_("'%s' is not a working tree"), av[0]); |
| 1190 | if (is_main_worktree(wt)) |
| 1191 | die(_("The main working tree cannot be locked or unlocked")); |
| 1192 | if (!worktree_lock_reason(wt)) |
| 1193 | die(_("'%s' is not locked"), av[0]); |
| 1194 | |
| 1195 | path = repo_common_path(the_repository, "worktrees/%s/locked", wt->id); |
| 1196 | ret = unlink_or_warn(path); |
| 1197 | |
| 1198 | free_worktrees(worktrees); |
| 1199 | free(path); |
| 1200 | return ret; |
| 1201 | } |
| 1202 | |
| 1203 | static void validate_no_submodules(const struct worktree *wt) |
| 1204 | { |
| 1205 | struct index_state istate = INDEX_STATE_INIT(the_repository); |
| 1206 | struct strbuf path = STRBUF_INIT; |
| 1207 | int i, found_submodules = 0; |
| 1208 | char *wt_gitdir; |
| 1209 | |
| 1210 | wt_gitdir = get_worktree_git_dir(wt); |
| 1211 | |
| 1212 | if (is_directory(worktree_git_path(wt, "modules"))) { |
| 1213 | /* |
| 1214 | * There could be false positives, e.g. the "modules" |
| 1215 | * directory exists but is empty. But it's a rare case and |
| 1216 | * this simpler check is probably good enough for now. |
| 1217 | */ |
| 1218 | found_submodules = 1; |
| 1219 | } else if (read_index_from(&istate, worktree_git_path(wt, "index"), |
| 1220 | wt_gitdir) > 0) { |
| 1221 | for (i = 0; i < istate.cache_nr; i++) { |
| 1222 | struct cache_entry *ce = istate.cache[i]; |
| 1223 | int err; |
| 1224 | |
| 1225 | if (!S_ISGITLINK(ce->ce_mode)) |
| 1226 | continue; |
| 1227 | |
| 1228 | strbuf_reset(&path); |
| 1229 | strbuf_addf(&path, "%s/%s", wt->path, ce->name); |
| 1230 | if (!is_submodule_populated_gently(path.buf, &err)) |
| 1231 | continue; |
| 1232 | |
| 1233 | found_submodules = 1; |
| 1234 | break; |
| 1235 | } |
| 1236 | } |
| 1237 | discard_index(&istate); |
| 1238 | strbuf_release(&path); |
| 1239 | free(wt_gitdir); |
| 1240 | |
| 1241 | if (found_submodules) |
| 1242 | die(_("working trees containing submodules cannot be moved or removed")); |
| 1243 | } |
| 1244 | |
| 1245 | static int move_worktree(int ac, const char **av, const char *prefix, |
| 1246 | struct repository *repo UNUSED) |
| 1247 | { |
| 1248 | int force = 0; |
| 1249 | struct option options[] = { |
| 1250 | OPT__FORCE(&force, |
| 1251 | N_("force move even if worktree is dirty or locked"), |
| 1252 | PARSE_OPT_NOCOMPLETE), |
| 1253 | OPT_BOOL(0, "relative-paths", &use_relative_paths, |
| 1254 | N_("use relative paths for worktrees")), |
| 1255 | OPT_END() |
| 1256 | }; |
| 1257 | struct worktree **worktrees, *wt; |
| 1258 | struct strbuf dst = STRBUF_INIT; |
| 1259 | struct strbuf errmsg = STRBUF_INIT; |
| 1260 | const char *reason = NULL; |
| 1261 | char *path; |
| 1262 | |
| 1263 | ac = parse_options(ac, av, prefix, options, git_worktree_move_usage, |
| 1264 | 0); |
| 1265 | if (ac != 2) |
| 1266 | usage_with_options(git_worktree_move_usage, options); |
| 1267 | |
| 1268 | path = prefix_filename(prefix, av[1]); |
| 1269 | strbuf_addstr(&dst, path); |
| 1270 | free(path); |
| 1271 | |
| 1272 | worktrees = get_worktrees(); |
| 1273 | wt = find_worktree(worktrees, prefix, av[0]); |
| 1274 | if (!wt) |
| 1275 | die(_("'%s' is not a working tree"), av[0]); |
| 1276 | if (is_main_worktree(wt)) |
| 1277 | die(_("'%s' is a main working tree"), av[0]); |
| 1278 | if (is_directory(dst.buf)) { |
| 1279 | const char *sep = find_last_dir_sep(wt->path); |
| 1280 | |
| 1281 | if (!sep) |
| 1282 | die(_("could not figure out destination name from '%s'"), |
| 1283 | wt->path); |
| 1284 | strbuf_trim_trailing_dir_sep(&dst); |
| 1285 | strbuf_addstr(&dst, sep); |
| 1286 | } |
| 1287 | check_candidate_path(dst.buf, force, worktrees, "move"); |
| 1288 | |
| 1289 | validate_no_submodules(wt); |
| 1290 | |
| 1291 | if (force < 2) |
| 1292 | reason = worktree_lock_reason(wt); |
| 1293 | if (reason) { |
| 1294 | if (*reason) |
| 1295 | die(_("cannot move a locked working tree, lock reason: %s\nuse 'move -f -f' to override or unlock first"), |
| 1296 | reason); |
| 1297 | die(_("cannot move a locked working tree;\nuse 'move -f -f' to override or unlock first")); |
| 1298 | } |
| 1299 | if (validate_worktree(wt, &errmsg, 0)) |
| 1300 | die(_("validation failed, cannot move working tree: %s"), |
| 1301 | errmsg.buf); |
| 1302 | strbuf_release(&errmsg); |
| 1303 | |
| 1304 | if (rename(wt->path, dst.buf) == -1) |
| 1305 | die_errno(_("failed to move '%s' to '%s'"), wt->path, dst.buf); |
| 1306 | |
| 1307 | update_worktree_location(wt, dst.buf, use_relative_paths); |
| 1308 | |
| 1309 | strbuf_release(&dst); |
| 1310 | free_worktrees(worktrees); |
| 1311 | return 0; |
| 1312 | } |
| 1313 | |
| 1314 | /* |
| 1315 | * Note, "git status --porcelain" is used to determine if it's safe to |
| 1316 | * delete a whole worktree. "git status" does not ignore user |
| 1317 | * configuration, so if a normal "git status" shows "clean" for the |
| 1318 | * user, then it's ok to remove it. |
| 1319 | * |
| 1320 | * This assumption may be a bad one. We may want to ignore |
| 1321 | * (potentially bad) user settings and only delete a worktree when |
| 1322 | * it's absolutely safe to do so from _our_ point of view because we |
| 1323 | * know better. |
| 1324 | */ |
| 1325 | static void check_clean_worktree(struct worktree *wt, |
| 1326 | const char *original_path) |
| 1327 | { |
| 1328 | struct child_process cp; |
| 1329 | char buf[1]; |
| 1330 | int ret; |
| 1331 | |
| 1332 | /* |
| 1333 | * Until we sort this out, all submodules are "dirty" and |
| 1334 | * will abort this function. |
| 1335 | */ |
| 1336 | validate_no_submodules(wt); |
| 1337 | |
| 1338 | child_process_init(&cp); |
| 1339 | strvec_pushf(&cp.env, "%s=%s/.git", |
| 1340 | GIT_DIR_ENVIRONMENT, wt->path); |
| 1341 | strvec_pushf(&cp.env, "%s=%s", |
| 1342 | GIT_WORK_TREE_ENVIRONMENT, wt->path); |
| 1343 | strvec_pushl(&cp.args, "status", |
| 1344 | "--porcelain", "--ignore-submodules=none", |
| 1345 | NULL); |
| 1346 | cp.git_cmd = 1; |
| 1347 | cp.dir = wt->path; |
| 1348 | cp.out = -1; |
| 1349 | ret = start_command(&cp); |
| 1350 | if (ret) |
| 1351 | die_errno(_("failed to run 'git status' on '%s'"), |
| 1352 | original_path); |
| 1353 | ret = xread(cp.out, buf, sizeof(buf)); |
| 1354 | if (ret) |
| 1355 | die(_("'%s' contains modified or untracked files, use --force to delete it"), |
| 1356 | original_path); |
| 1357 | close(cp.out); |
| 1358 | ret = finish_command(&cp); |
| 1359 | if (ret) |
| 1360 | die_errno(_("failed to run 'git status' on '%s', code %d"), |
| 1361 | original_path, ret); |
| 1362 | } |
| 1363 | |
| 1364 | static int delete_git_work_tree(struct worktree *wt) |
| 1365 | { |
| 1366 | struct strbuf sb = STRBUF_INIT; |
| 1367 | int ret = 0; |
| 1368 | |
| 1369 | strbuf_addstr(&sb, wt->path); |
| 1370 | if (remove_dir_recursively(&sb, 0)) { |
| 1371 | error_errno(_("failed to delete '%s'"), sb.buf); |
| 1372 | ret = -1; |
| 1373 | } |
| 1374 | strbuf_release(&sb); |
| 1375 | return ret; |
| 1376 | } |
| 1377 | |
| 1378 | static int remove_worktree(int ac, const char **av, const char *prefix, |
| 1379 | struct repository *repo UNUSED) |
| 1380 | { |
| 1381 | int force = 0; |
| 1382 | struct option options[] = { |
| 1383 | OPT__FORCE(&force, |
| 1384 | N_("force removal even if worktree is dirty or locked"), |
| 1385 | PARSE_OPT_NOCOMPLETE), |
| 1386 | OPT_END() |
| 1387 | }; |
| 1388 | struct worktree **worktrees, *wt; |
| 1389 | struct strbuf errmsg = STRBUF_INIT; |
| 1390 | const char *reason = NULL; |
| 1391 | int ret = 0; |
| 1392 | |
| 1393 | ac = parse_options(ac, av, prefix, options, git_worktree_remove_usage, 0); |
| 1394 | if (ac != 1) |
| 1395 | usage_with_options(git_worktree_remove_usage, options); |
| 1396 | |
| 1397 | worktrees = get_worktrees(); |
| 1398 | wt = find_worktree(worktrees, prefix, av[0]); |
| 1399 | if (!wt) |
| 1400 | die(_("'%s' is not a working tree"), av[0]); |
| 1401 | if (is_main_worktree(wt)) |
| 1402 | die(_("'%s' is a main working tree"), av[0]); |
| 1403 | if (force < 2) |
| 1404 | reason = worktree_lock_reason(wt); |
| 1405 | if (reason) { |
| 1406 | if (*reason) |
| 1407 | die(_("cannot remove a locked working tree, lock reason: %s\nuse 'remove -f -f' to override or unlock first"), |
| 1408 | reason); |
| 1409 | die(_("cannot remove a locked working tree;\nuse 'remove -f -f' to override or unlock first")); |
| 1410 | } |
| 1411 | if (validate_worktree(wt, &errmsg, WT_VALIDATE_WORKTREE_MISSING_OK)) |
| 1412 | die(_("validation failed, cannot remove working tree: %s"), |
| 1413 | errmsg.buf); |
| 1414 | strbuf_release(&errmsg); |
| 1415 | |
| 1416 | if (file_exists(wt->path)) { |
| 1417 | if (!force) |
| 1418 | check_clean_worktree(wt, av[0]); |
| 1419 | |
| 1420 | ret |= delete_git_work_tree(wt); |
| 1421 | } |
| 1422 | /* |
| 1423 | * continue on even if ret is non-zero, there's no going back |
| 1424 | * from here. |
| 1425 | */ |
| 1426 | ret |= delete_git_dir(wt->id); |
| 1427 | delete_worktrees_dir_if_empty(); |
| 1428 | |
| 1429 | free_worktrees(worktrees); |
| 1430 | return ret; |
| 1431 | } |
| 1432 | |
| 1433 | static void report_repair(int iserr, const char *path, const char *msg, void *cb_data) |
| 1434 | { |
| 1435 | if (!iserr) { |
| 1436 | fprintf_ln(stderr, _("repair: %s: %s"), msg, path); |
| 1437 | } else { |
| 1438 | int *exit_status = (int *)cb_data; |
| 1439 | fprintf_ln(stderr, _("error: %s: %s"), msg, path); |
| 1440 | *exit_status = 1; |
| 1441 | } |
| 1442 | } |
| 1443 | |
| 1444 | static int repair(int ac, const char **av, const char *prefix, |
| 1445 | struct repository *repo UNUSED) |
| 1446 | { |
| 1447 | const char **p; |
| 1448 | const char *self[] = { ".", NULL }; |
| 1449 | struct option options[] = { |
| 1450 | OPT_BOOL(0, "relative-paths", &use_relative_paths, |
| 1451 | N_("use relative paths for worktrees")), |
| 1452 | OPT_END() |
| 1453 | }; |
| 1454 | int rc = 0; |
| 1455 | |
| 1456 | ac = parse_options(ac, av, prefix, options, git_worktree_repair_usage, 0); |
| 1457 | p = ac > 0 ? av : self; |
| 1458 | for (; *p; p++) |
| 1459 | repair_worktree_at_path(*p, report_repair, &rc, use_relative_paths); |
| 1460 | repair_worktrees(report_repair, &rc, use_relative_paths); |
| 1461 | return rc; |
| 1462 | } |
| 1463 | |
| 1464 | int cmd_worktree(int ac, |
| 1465 | const char **av, |
| 1466 | const char *prefix, |
| 1467 | struct repository *repo) |
| 1468 | { |
| 1469 | parse_opt_subcommand_fn *fn = NULL; |
| 1470 | struct option options[] = { |
| 1471 | OPT_SUBCOMMAND("add", &fn, add), |
| 1472 | OPT_SUBCOMMAND("prune", &fn, prune), |
| 1473 | OPT_SUBCOMMAND("list", &fn, list), |
| 1474 | OPT_SUBCOMMAND("lock", &fn, lock_worktree), |
| 1475 | OPT_SUBCOMMAND("unlock", &fn, unlock_worktree), |
| 1476 | OPT_SUBCOMMAND("move", &fn, move_worktree), |
| 1477 | OPT_SUBCOMMAND("remove", &fn, remove_worktree), |
| 1478 | OPT_SUBCOMMAND("repair", &fn, repair), |
| 1479 | OPT_END() |
| 1480 | }; |
| 1481 | |
| 1482 | repo_config(the_repository, git_worktree_config, NULL); |
| 1483 | |
| 1484 | if (!prefix) |
| 1485 | prefix = ""; |
| 1486 | |
| 1487 | ac = parse_options(ac, av, prefix, options, git_worktree_usage, 0); |
| 1488 | |
| 1489 | prepare_repo_settings(the_repository); |
| 1490 | the_repository->settings.command_requires_full_index = 0; |
| 1491 | |
| 1492 | return fn(ac, av, prefix, repo); |
| 1493 | } |