15cb1600eebc3fd209fc88561f811e132b493131
1#include "cache.h"
2#include "checkout.h"
3#include "config.h"
4#include "builtin.h"
5#include "dir.h"
6#include "parse-options.h"
7#include "argv-array.h"
8#include "branch.h"
9#include "refs.h"
10#include "run-command.h"
11#include "sigchain.h"
12#include "refs.h"
13#include "utf8.h"
14#include "worktree.h"
15
16static const char * const worktree_usage[] = {
17 N_("git worktree add [<options>] <path> [<branch>]"),
18 N_("git worktree list [<options>]"),
19 N_("git worktree lock [<options>] <path>"),
20 N_("git worktree prune [<options>]"),
21 N_("git worktree unlock <path>"),
22 NULL
23};
24
25struct add_opts {
26 int force;
27 int detach;
28 int checkout;
29 int keep_locked;
30 const char *new_branch;
31 int force_new_branch;
32};
33
34static int show_only;
35static int verbose;
36static timestamp_t expire;
37
38static int prune_worktree(const char *id, struct strbuf *reason)
39{
40 struct stat st;
41 char *path;
42 int fd;
43 size_t len;
44 ssize_t read_result;
45
46 if (!is_directory(git_path("worktrees/%s", id))) {
47 strbuf_addf(reason, _("Removing worktrees/%s: not a valid directory"), id);
48 return 1;
49 }
50 if (file_exists(git_path("worktrees/%s/locked", id)))
51 return 0;
52 if (stat(git_path("worktrees/%s/gitdir", id), &st)) {
53 strbuf_addf(reason, _("Removing worktrees/%s: gitdir file does not exist"), id);
54 return 1;
55 }
56 fd = open(git_path("worktrees/%s/gitdir", id), O_RDONLY);
57 if (fd < 0) {
58 strbuf_addf(reason, _("Removing worktrees/%s: unable to read gitdir file (%s)"),
59 id, strerror(errno));
60 return 1;
61 }
62 len = xsize_t(st.st_size);
63 path = xmallocz(len);
64
65 read_result = read_in_full(fd, path, len);
66 if (read_result < 0) {
67 strbuf_addf(reason, _("Removing worktrees/%s: unable to read gitdir file (%s)"),
68 id, strerror(errno));
69 close(fd);
70 free(path);
71 return 1;
72 }
73 close(fd);
74
75 if (read_result != len) {
76 strbuf_addf(reason,
77 _("Removing worktrees/%s: short read (expected %"PRIuMAX" bytes, read %"PRIuMAX")"),
78 id, (uintmax_t)len, (uintmax_t)read_result);
79 free(path);
80 return 1;
81 }
82 while (len && (path[len - 1] == '\n' || path[len - 1] == '\r'))
83 len--;
84 if (!len) {
85 strbuf_addf(reason, _("Removing worktrees/%s: invalid gitdir file"), id);
86 free(path);
87 return 1;
88 }
89 path[len] = '\0';
90 if (!file_exists(path)) {
91 struct stat st_link;
92 free(path);
93 /*
94 * the repo is moved manually and has not been
95 * accessed since?
96 */
97 if (!stat(git_path("worktrees/%s/link", id), &st_link) &&
98 st_link.st_nlink > 1)
99 return 0;
100 if (st.st_mtime <= expire) {
101 strbuf_addf(reason, _("Removing worktrees/%s: gitdir file points to non-existent location"), id);
102 return 1;
103 } else {
104 return 0;
105 }
106 }
107 free(path);
108 return 0;
109}
110
111static void prune_worktrees(void)
112{
113 struct strbuf reason = STRBUF_INIT;
114 struct strbuf path = STRBUF_INIT;
115 DIR *dir = opendir(git_path("worktrees"));
116 struct dirent *d;
117 int ret;
118 if (!dir)
119 return;
120 while ((d = readdir(dir)) != NULL) {
121 if (is_dot_or_dotdot(d->d_name))
122 continue;
123 strbuf_reset(&reason);
124 if (!prune_worktree(d->d_name, &reason))
125 continue;
126 if (show_only || verbose)
127 printf("%s\n", reason.buf);
128 if (show_only)
129 continue;
130 git_path_buf(&path, "worktrees/%s", d->d_name);
131 ret = remove_dir_recursively(&path, 0);
132 if (ret < 0 && errno == ENOTDIR)
133 ret = unlink(path.buf);
134 if (ret)
135 error_errno(_("failed to remove '%s'"), path.buf);
136 }
137 closedir(dir);
138 if (!show_only)
139 rmdir(git_path("worktrees"));
140 strbuf_release(&reason);
141 strbuf_release(&path);
142}
143
144static int prune(int ac, const char **av, const char *prefix)
145{
146 struct option options[] = {
147 OPT__DRY_RUN(&show_only, N_("do not remove, show only")),
148 OPT__VERBOSE(&verbose, N_("report pruned working trees")),
149 OPT_EXPIRY_DATE(0, "expire", &expire,
150 N_("expire working trees older than <time>")),
151 OPT_END()
152 };
153
154 expire = TIME_MAX;
155 ac = parse_options(ac, av, prefix, options, worktree_usage, 0);
156 if (ac)
157 usage_with_options(worktree_usage, options);
158 prune_worktrees();
159 return 0;
160}
161
162static char *junk_work_tree;
163static char *junk_git_dir;
164static int is_junk;
165static pid_t junk_pid;
166
167static void remove_junk(void)
168{
169 struct strbuf sb = STRBUF_INIT;
170 if (!is_junk || getpid() != junk_pid)
171 return;
172 if (junk_git_dir) {
173 strbuf_addstr(&sb, junk_git_dir);
174 remove_dir_recursively(&sb, 0);
175 strbuf_reset(&sb);
176 }
177 if (junk_work_tree) {
178 strbuf_addstr(&sb, junk_work_tree);
179 remove_dir_recursively(&sb, 0);
180 }
181 strbuf_release(&sb);
182}
183
184static void remove_junk_on_signal(int signo)
185{
186 remove_junk();
187 sigchain_pop(signo);
188 raise(signo);
189}
190
191static const char *worktree_basename(const char *path, int *olen)
192{
193 const char *name;
194 int len;
195
196 len = strlen(path);
197 while (len && is_dir_sep(path[len - 1]))
198 len--;
199
200 for (name = path + len - 1; name > path; name--)
201 if (is_dir_sep(*name)) {
202 name++;
203 break;
204 }
205
206 *olen = len;
207 return name;
208}
209
210static int add_worktree(const char *path, const char *refname,
211 const struct add_opts *opts)
212{
213 struct strbuf sb_git = STRBUF_INIT, sb_repo = STRBUF_INIT;
214 struct strbuf sb = STRBUF_INIT;
215 const char *name;
216 struct stat st;
217 struct child_process cp = CHILD_PROCESS_INIT;
218 struct argv_array child_env = ARGV_ARRAY_INIT;
219 int counter = 0, len, ret;
220 struct strbuf symref = STRBUF_INIT;
221 struct commit *commit = NULL;
222
223 if (file_exists(path) && !is_empty_dir(path))
224 die(_("'%s' already exists"), path);
225
226 /* is 'refname' a branch or commit? */
227 if (!opts->detach && !strbuf_check_branch_ref(&symref, refname) &&
228 ref_exists(symref.buf)) { /* it's a branch */
229 if (!opts->force)
230 die_if_checked_out(symref.buf, 0);
231 } else { /* must be a commit */
232 commit = lookup_commit_reference_by_name(refname);
233 if (!commit)
234 die(_("invalid reference: %s"), refname);
235 }
236
237 name = worktree_basename(path, &len);
238 git_path_buf(&sb_repo, "worktrees/%.*s", (int)(path + len - name), name);
239 len = sb_repo.len;
240 if (safe_create_leading_directories_const(sb_repo.buf))
241 die_errno(_("could not create leading directories of '%s'"),
242 sb_repo.buf);
243 while (!stat(sb_repo.buf, &st)) {
244 counter++;
245 strbuf_setlen(&sb_repo, len);
246 strbuf_addf(&sb_repo, "%d", counter);
247 }
248 name = strrchr(sb_repo.buf, '/') + 1;
249
250 junk_pid = getpid();
251 atexit(remove_junk);
252 sigchain_push_common(remove_junk_on_signal);
253
254 if (mkdir(sb_repo.buf, 0777))
255 die_errno(_("could not create directory of '%s'"), sb_repo.buf);
256 junk_git_dir = xstrdup(sb_repo.buf);
257 is_junk = 1;
258
259 /*
260 * lock the incomplete repo so prune won't delete it, unlock
261 * after the preparation is over.
262 */
263 strbuf_addf(&sb, "%s/locked", sb_repo.buf);
264 if (!opts->keep_locked)
265 write_file(sb.buf, "initializing");
266 else
267 write_file(sb.buf, "added with --lock");
268
269 strbuf_addf(&sb_git, "%s/.git", path);
270 if (safe_create_leading_directories_const(sb_git.buf))
271 die_errno(_("could not create leading directories of '%s'"),
272 sb_git.buf);
273 junk_work_tree = xstrdup(path);
274
275 strbuf_reset(&sb);
276 strbuf_addf(&sb, "%s/gitdir", sb_repo.buf);
277 write_file(sb.buf, "%s", real_path(sb_git.buf));
278 write_file(sb_git.buf, "gitdir: %s/worktrees/%s",
279 real_path(get_git_common_dir()), name);
280 /*
281 * This is to keep resolve_ref() happy. We need a valid HEAD
282 * or is_git_directory() will reject the directory. Any value which
283 * looks like an object ID will do since it will be immediately
284 * replaced by the symbolic-ref or update-ref invocation in the new
285 * worktree.
286 */
287 strbuf_reset(&sb);
288 strbuf_addf(&sb, "%s/HEAD", sb_repo.buf);
289 write_file(sb.buf, "%s", sha1_to_hex(null_sha1));
290 strbuf_reset(&sb);
291 strbuf_addf(&sb, "%s/commondir", sb_repo.buf);
292 write_file(sb.buf, "../..");
293
294 fprintf_ln(stderr, _("Preparing %s (identifier %s)"), path, name);
295
296 argv_array_pushf(&child_env, "%s=%s", GIT_DIR_ENVIRONMENT, sb_git.buf);
297 argv_array_pushf(&child_env, "%s=%s", GIT_WORK_TREE_ENVIRONMENT, path);
298 cp.git_cmd = 1;
299
300 if (commit)
301 argv_array_pushl(&cp.args, "update-ref", "HEAD",
302 oid_to_hex(&commit->object.oid), NULL);
303 else
304 argv_array_pushl(&cp.args, "symbolic-ref", "HEAD",
305 symref.buf, NULL);
306 cp.env = child_env.argv;
307 ret = run_command(&cp);
308 if (ret)
309 goto done;
310
311 if (opts->checkout) {
312 cp.argv = NULL;
313 argv_array_clear(&cp.args);
314 argv_array_pushl(&cp.args, "reset", "--hard", NULL);
315 cp.env = child_env.argv;
316 ret = run_command(&cp);
317 if (ret)
318 goto done;
319 }
320
321 is_junk = 0;
322 FREE_AND_NULL(junk_work_tree);
323 FREE_AND_NULL(junk_git_dir);
324
325done:
326 if (ret || !opts->keep_locked) {
327 strbuf_reset(&sb);
328 strbuf_addf(&sb, "%s/locked", sb_repo.buf);
329 unlink_or_warn(sb.buf);
330 }
331 argv_array_clear(&child_env);
332 strbuf_release(&sb);
333 strbuf_release(&symref);
334 strbuf_release(&sb_repo);
335 strbuf_release(&sb_git);
336 return ret;
337}
338
339static int add(int ac, const char **av, const char *prefix)
340{
341 struct add_opts opts;
342 const char *new_branch_force = NULL;
343 char *path;
344 const char *branch;
345 const char *opt_track = NULL;
346 int guess_remote = 0;
347 struct option options[] = {
348 OPT__FORCE(&opts.force, N_("checkout <branch> even if already checked out in other worktree")),
349 OPT_STRING('b', NULL, &opts.new_branch, N_("branch"),
350 N_("create a new branch")),
351 OPT_STRING('B', NULL, &new_branch_force, N_("branch"),
352 N_("create or reset a branch")),
353 OPT_BOOL(0, "detach", &opts.detach, N_("detach HEAD at named commit")),
354 OPT_BOOL(0, "checkout", &opts.checkout, N_("populate the new working tree")),
355 OPT_BOOL(0, "lock", &opts.keep_locked, N_("keep the new working tree locked")),
356 OPT_PASSTHRU(0, "track", &opt_track, NULL,
357 N_("set up tracking mode (see git-branch(1))"),
358 PARSE_OPT_NOARG | PARSE_OPT_OPTARG),
359 OPT_BOOL(0, "guess-remote", &guess_remote,
360 N_("try to match the new branch name with a remote-tracking branch")),
361 OPT_END()
362 };
363
364 memset(&opts, 0, sizeof(opts));
365 opts.checkout = 1;
366 ac = parse_options(ac, av, prefix, options, worktree_usage, 0);
367 if (!!opts.detach + !!opts.new_branch + !!new_branch_force > 1)
368 die(_("-b, -B, and --detach are mutually exclusive"));
369 if (ac < 1 || ac > 2)
370 usage_with_options(worktree_usage, options);
371
372 path = prefix_filename(prefix, av[0]);
373 branch = ac < 2 ? "HEAD" : av[1];
374
375 if (!strcmp(branch, "-"))
376 branch = "@{-1}";
377
378 opts.force_new_branch = !!new_branch_force;
379 if (opts.force_new_branch) {
380 struct strbuf symref = STRBUF_INIT;
381
382 opts.new_branch = new_branch_force;
383
384 if (!opts.force &&
385 !strbuf_check_branch_ref(&symref, opts.new_branch) &&
386 ref_exists(symref.buf))
387 die_if_checked_out(symref.buf, 0);
388 strbuf_release(&symref);
389 }
390
391 if (ac < 2 && !opts.new_branch && !opts.detach) {
392 int n;
393 const char *s = worktree_basename(path, &n);
394 opts.new_branch = xstrndup(s, n);
395 if (guess_remote) {
396 struct object_id oid;
397 const char *remote =
398 unique_tracking_name(opts.new_branch, &oid);
399 if (remote)
400 branch = remote;
401 }
402 }
403
404 if (ac == 2 && !opts.new_branch && !opts.detach) {
405 struct object_id oid;
406 struct commit *commit;
407 const char *remote;
408
409 commit = lookup_commit_reference_by_name(branch);
410 if (!commit) {
411 remote = unique_tracking_name(branch, &oid);
412 if (remote) {
413 opts.new_branch = branch;
414 branch = remote;
415 }
416 }
417 }
418
419 if (opts.new_branch) {
420 struct child_process cp = CHILD_PROCESS_INIT;
421 cp.git_cmd = 1;
422 argv_array_push(&cp.args, "branch");
423 if (opts.force_new_branch)
424 argv_array_push(&cp.args, "--force");
425 argv_array_push(&cp.args, opts.new_branch);
426 argv_array_push(&cp.args, branch);
427 if (opt_track)
428 argv_array_push(&cp.args, opt_track);
429 if (run_command(&cp))
430 return -1;
431 branch = opts.new_branch;
432 } else if (opt_track) {
433 die(_("--[no-]track can only be used if a new branch is created"));
434 }
435
436 UNLEAK(path);
437 UNLEAK(opts);
438 return add_worktree(path, branch, &opts);
439}
440
441static void show_worktree_porcelain(struct worktree *wt)
442{
443 printf("worktree %s\n", wt->path);
444 if (wt->is_bare)
445 printf("bare\n");
446 else {
447 printf("HEAD %s\n", oid_to_hex(&wt->head_oid));
448 if (wt->is_detached)
449 printf("detached\n");
450 else if (wt->head_ref)
451 printf("branch %s\n", wt->head_ref);
452 }
453 printf("\n");
454}
455
456static void show_worktree(struct worktree *wt, int path_maxlen, int abbrev_len)
457{
458 struct strbuf sb = STRBUF_INIT;
459 int cur_path_len = strlen(wt->path);
460 int path_adj = cur_path_len - utf8_strwidth(wt->path);
461
462 strbuf_addf(&sb, "%-*s ", 1 + path_maxlen + path_adj, wt->path);
463 if (wt->is_bare)
464 strbuf_addstr(&sb, "(bare)");
465 else {
466 strbuf_addf(&sb, "%-*s ", abbrev_len,
467 find_unique_abbrev(wt->head_oid.hash, DEFAULT_ABBREV));
468 if (wt->is_detached)
469 strbuf_addstr(&sb, "(detached HEAD)");
470 else if (wt->head_ref) {
471 char *ref = shorten_unambiguous_ref(wt->head_ref, 0);
472 strbuf_addf(&sb, "[%s]", ref);
473 free(ref);
474 } else
475 strbuf_addstr(&sb, "(error)");
476 }
477 printf("%s\n", sb.buf);
478
479 strbuf_release(&sb);
480}
481
482static void measure_widths(struct worktree **wt, int *abbrev, int *maxlen)
483{
484 int i;
485
486 for (i = 0; wt[i]; i++) {
487 int sha1_len;
488 int path_len = strlen(wt[i]->path);
489
490 if (path_len > *maxlen)
491 *maxlen = path_len;
492 sha1_len = strlen(find_unique_abbrev(wt[i]->head_oid.hash, *abbrev));
493 if (sha1_len > *abbrev)
494 *abbrev = sha1_len;
495 }
496}
497
498static int list(int ac, const char **av, const char *prefix)
499{
500 int porcelain = 0;
501
502 struct option options[] = {
503 OPT_BOOL(0, "porcelain", &porcelain, N_("machine-readable output")),
504 OPT_END()
505 };
506
507 ac = parse_options(ac, av, prefix, options, worktree_usage, 0);
508 if (ac)
509 usage_with_options(worktree_usage, options);
510 else {
511 struct worktree **worktrees = get_worktrees(GWT_SORT_LINKED);
512 int path_maxlen = 0, abbrev = DEFAULT_ABBREV, i;
513
514 if (!porcelain)
515 measure_widths(worktrees, &abbrev, &path_maxlen);
516
517 for (i = 0; worktrees[i]; i++) {
518 if (porcelain)
519 show_worktree_porcelain(worktrees[i]);
520 else
521 show_worktree(worktrees[i], path_maxlen, abbrev);
522 }
523 free_worktrees(worktrees);
524 }
525 return 0;
526}
527
528static int lock_worktree(int ac, const char **av, const char *prefix)
529{
530 const char *reason = "", *old_reason;
531 struct option options[] = {
532 OPT_STRING(0, "reason", &reason, N_("string"),
533 N_("reason for locking")),
534 OPT_END()
535 };
536 struct worktree **worktrees, *wt;
537
538 ac = parse_options(ac, av, prefix, options, worktree_usage, 0);
539 if (ac != 1)
540 usage_with_options(worktree_usage, options);
541
542 worktrees = get_worktrees(0);
543 wt = find_worktree(worktrees, prefix, av[0]);
544 if (!wt)
545 die(_("'%s' is not a working tree"), av[0]);
546 if (is_main_worktree(wt))
547 die(_("The main working tree cannot be locked or unlocked"));
548
549 old_reason = is_worktree_locked(wt);
550 if (old_reason) {
551 if (*old_reason)
552 die(_("'%s' is already locked, reason: %s"),
553 av[0], old_reason);
554 die(_("'%s' is already locked"), av[0]);
555 }
556
557 write_file(git_common_path("worktrees/%s/locked", wt->id),
558 "%s", reason);
559 free_worktrees(worktrees);
560 return 0;
561}
562
563static int unlock_worktree(int ac, const char **av, const char *prefix)
564{
565 struct option options[] = {
566 OPT_END()
567 };
568 struct worktree **worktrees, *wt;
569 int ret;
570
571 ac = parse_options(ac, av, prefix, options, worktree_usage, 0);
572 if (ac != 1)
573 usage_with_options(worktree_usage, options);
574
575 worktrees = get_worktrees(0);
576 wt = find_worktree(worktrees, prefix, av[0]);
577 if (!wt)
578 die(_("'%s' is not a working tree"), av[0]);
579 if (is_main_worktree(wt))
580 die(_("The main working tree cannot be locked or unlocked"));
581 if (!is_worktree_locked(wt))
582 die(_("'%s' is not locked"), av[0]);
583 ret = unlink_or_warn(git_common_path("worktrees/%s/locked", wt->id));
584 free_worktrees(worktrees);
585 return ret;
586}
587
588int cmd_worktree(int ac, const char **av, const char *prefix)
589{
590 struct option options[] = {
591 OPT_END()
592 };
593
594 git_config(git_default_config, NULL);
595
596 if (ac < 2)
597 usage_with_options(worktree_usage, options);
598 if (!prefix)
599 prefix = "";
600 if (!strcmp(av[1], "add"))
601 return add(ac - 1, av + 1, prefix);
602 if (!strcmp(av[1], "prune"))
603 return prune(ac - 1, av + 1, prefix);
604 if (!strcmp(av[1], "list"))
605 return list(ac - 1, av + 1, prefix);
606 if (!strcmp(av[1], "lock"))
607 return lock_worktree(ac - 1, av + 1, prefix);
608 if (!strcmp(av[1], "unlock"))
609 return unlock_worktree(ac - 1, av + 1, prefix);
610 usage_with_options(worktree_usage, options);
611}