5 #include "parse-options.h"
6 #include "argv-array.h"
9 #include "run-command.h"
15 static const char * const worktree_usage
[] = {
16 N_("git worktree add [<options>] <path> [<branch>]"),
17 N_("git worktree list [<options>]"),
18 N_("git worktree lock [<options>] <path>"),
19 N_("git worktree prune [<options>]"),
20 N_("git worktree unlock <path>"),
29 const char *new_branch
;
35 static timestamp_t expire
;
37 static int prune_worktree(const char *id
, struct strbuf
*reason
)
45 if (!is_directory(git_path("worktrees/%s", id
))) {
46 strbuf_addf(reason
, _("Removing worktrees/%s: not a valid directory"), id
);
49 if (file_exists(git_path("worktrees/%s/locked", id
)))
51 if (stat(git_path("worktrees/%s/gitdir", id
), &st
)) {
52 strbuf_addf(reason
, _("Removing worktrees/%s: gitdir file does not exist"), id
);
55 fd
= open(git_path("worktrees/%s/gitdir", id
), O_RDONLY
);
57 strbuf_addf(reason
, _("Removing worktrees/%s: unable to read gitdir file (%s)"),
61 len
= xsize_t(st
.st_size
);
64 read_result
= read_in_full(fd
, path
, len
);
65 if (read_result
< 0) {
66 strbuf_addf(reason
, _("Removing worktrees/%s: unable to read gitdir file (%s)"),
74 if (read_result
!= len
) {
76 _("Removing worktrees/%s: short read (expected %"PRIuMAX
" bytes, read %"PRIuMAX
")"),
77 id
, (uintmax_t)len
, (uintmax_t)read_result
);
81 while (len
&& (path
[len
- 1] == '\n' || path
[len
- 1] == '\r'))
84 strbuf_addf(reason
, _("Removing worktrees/%s: invalid gitdir file"), id
);
89 if (!file_exists(path
)) {
93 * the repo is moved manually and has not been
96 if (!stat(git_path("worktrees/%s/link", id
), &st_link
) &&
99 if (st
.st_mtime
<= expire
) {
100 strbuf_addf(reason
, _("Removing worktrees/%s: gitdir file points to non-existent location"), id
);
110 static void prune_worktrees(void)
112 struct strbuf reason
= STRBUF_INIT
;
113 struct strbuf path
= STRBUF_INIT
;
114 DIR *dir
= opendir(git_path("worktrees"));
119 while ((d
= readdir(dir
)) != NULL
) {
120 if (is_dot_or_dotdot(d
->d_name
))
122 strbuf_reset(&reason
);
123 if (!prune_worktree(d
->d_name
, &reason
))
125 if (show_only
|| verbose
)
126 printf("%s\n", reason
.buf
);
129 git_path_buf(&path
, "worktrees/%s", d
->d_name
);
130 ret
= remove_dir_recursively(&path
, 0);
131 if (ret
< 0 && errno
== ENOTDIR
)
132 ret
= unlink(path
.buf
);
134 error_errno(_("failed to remove '%s'"), path
.buf
);
138 rmdir(git_path("worktrees"));
139 strbuf_release(&reason
);
140 strbuf_release(&path
);
143 static int prune(int ac
, const char **av
, const char *prefix
)
145 struct option options
[] = {
146 OPT__DRY_RUN(&show_only
, N_("do not remove, show only")),
147 OPT__VERBOSE(&verbose
, N_("report pruned working trees")),
148 OPT_EXPIRY_DATE(0, "expire", &expire
,
149 N_("expire working trees older than <time>")),
154 ac
= parse_options(ac
, av
, prefix
, options
, worktree_usage
, 0);
156 usage_with_options(worktree_usage
, options
);
161 static char *junk_work_tree
;
162 static char *junk_git_dir
;
164 static pid_t junk_pid
;
166 static void remove_junk(void)
168 struct strbuf sb
= STRBUF_INIT
;
169 if (!is_junk
|| getpid() != junk_pid
)
172 strbuf_addstr(&sb
, junk_git_dir
);
173 remove_dir_recursively(&sb
, 0);
176 if (junk_work_tree
) {
177 strbuf_addstr(&sb
, junk_work_tree
);
178 remove_dir_recursively(&sb
, 0);
183 static void remove_junk_on_signal(int signo
)
190 static const char *worktree_basename(const char *path
, int *olen
)
196 while (len
&& is_dir_sep(path
[len
- 1]))
199 for (name
= path
+ len
- 1; name
> path
; name
--)
200 if (is_dir_sep(*name
)) {
209 static int add_worktree(const char *path
, const char *refname
,
210 const struct add_opts
*opts
)
212 struct strbuf sb_git
= STRBUF_INIT
, sb_repo
= STRBUF_INIT
;
213 struct strbuf sb
= STRBUF_INIT
;
216 struct child_process cp
= CHILD_PROCESS_INIT
;
217 struct argv_array child_env
= ARGV_ARRAY_INIT
;
218 int counter
= 0, len
, ret
;
219 struct strbuf symref
= STRBUF_INIT
;
220 struct commit
*commit
= NULL
;
222 if (file_exists(path
) && !is_empty_dir(path
))
223 die(_("'%s' already exists"), path
);
225 /* is 'refname' a branch or commit? */
226 if (!opts
->detach
&& !strbuf_check_branch_ref(&symref
, refname
) &&
227 ref_exists(symref
.buf
)) { /* it's a branch */
229 die_if_checked_out(symref
.buf
, 0);
230 } else { /* must be a commit */
231 commit
= lookup_commit_reference_by_name(refname
);
233 die(_("invalid reference: %s"), refname
);
236 name
= worktree_basename(path
, &len
);
237 git_path_buf(&sb_repo
, "worktrees/%.*s", (int)(path
+ len
- name
), name
);
239 if (safe_create_leading_directories_const(sb_repo
.buf
))
240 die_errno(_("could not create leading directories of '%s'"),
242 while (!stat(sb_repo
.buf
, &st
)) {
244 strbuf_setlen(&sb_repo
, len
);
245 strbuf_addf(&sb_repo
, "%d", counter
);
247 name
= strrchr(sb_repo
.buf
, '/') + 1;
251 sigchain_push_common(remove_junk_on_signal
);
253 if (mkdir(sb_repo
.buf
, 0777))
254 die_errno(_("could not create directory of '%s'"), sb_repo
.buf
);
255 junk_git_dir
= xstrdup(sb_repo
.buf
);
259 * lock the incomplete repo so prune won't delete it, unlock
260 * after the preparation is over.
262 strbuf_addf(&sb
, "%s/locked", sb_repo
.buf
);
263 if (!opts
->keep_locked
)
264 write_file(sb
.buf
, "initializing");
266 write_file(sb
.buf
, "added with --lock");
268 strbuf_addf(&sb_git
, "%s/.git", path
);
269 if (safe_create_leading_directories_const(sb_git
.buf
))
270 die_errno(_("could not create leading directories of '%s'"),
272 junk_work_tree
= xstrdup(path
);
275 strbuf_addf(&sb
, "%s/gitdir", sb_repo
.buf
);
276 write_file(sb
.buf
, "%s", real_path(sb_git
.buf
));
277 write_file(sb_git
.buf
, "gitdir: %s/worktrees/%s",
278 real_path(get_git_common_dir()), name
);
280 * This is to keep resolve_ref() happy. We need a valid HEAD
281 * or is_git_directory() will reject the directory. Any value which
282 * looks like an object ID will do since it will be immediately
283 * replaced by the symbolic-ref or update-ref invocation in the new
287 strbuf_addf(&sb
, "%s/HEAD", sb_repo
.buf
);
288 write_file(sb
.buf
, "%s", sha1_to_hex(null_sha1
));
290 strbuf_addf(&sb
, "%s/commondir", sb_repo
.buf
);
291 write_file(sb
.buf
, "../..");
293 fprintf_ln(stderr
, _("Preparing %s (identifier %s)"), path
, name
);
295 argv_array_pushf(&child_env
, "%s=%s", GIT_DIR_ENVIRONMENT
, sb_git
.buf
);
296 argv_array_pushf(&child_env
, "%s=%s", GIT_WORK_TREE_ENVIRONMENT
, path
);
300 argv_array_pushl(&cp
.args
, "update-ref", "HEAD",
301 oid_to_hex(&commit
->object
.oid
), NULL
);
303 argv_array_pushl(&cp
.args
, "symbolic-ref", "HEAD",
305 cp
.env
= child_env
.argv
;
306 ret
= run_command(&cp
);
310 if (opts
->checkout
) {
312 argv_array_clear(&cp
.args
);
313 argv_array_pushl(&cp
.args
, "reset", "--hard", NULL
);
314 cp
.env
= child_env
.argv
;
315 ret
= run_command(&cp
);
321 FREE_AND_NULL(junk_work_tree
);
322 FREE_AND_NULL(junk_git_dir
);
325 if (ret
|| !opts
->keep_locked
) {
327 strbuf_addf(&sb
, "%s/locked", sb_repo
.buf
);
328 unlink_or_warn(sb
.buf
);
330 argv_array_clear(&child_env
);
332 strbuf_release(&symref
);
333 strbuf_release(&sb_repo
);
334 strbuf_release(&sb_git
);
338 static int add(int ac
, const char **av
, const char *prefix
)
340 struct add_opts opts
;
341 const char *new_branch_force
= NULL
;
344 const char *opt_track
= NULL
;
345 struct option options
[] = {
346 OPT__FORCE(&opts
.force
, N_("checkout <branch> even if already checked out in other worktree")),
347 OPT_STRING('b', NULL
, &opts
.new_branch
, N_("branch"),
348 N_("create a new branch")),
349 OPT_STRING('B', NULL
, &new_branch_force
, N_("branch"),
350 N_("create or reset a branch")),
351 OPT_BOOL(0, "detach", &opts
.detach
, N_("detach HEAD at named commit")),
352 OPT_BOOL(0, "checkout", &opts
.checkout
, N_("populate the new working tree")),
353 OPT_BOOL(0, "lock", &opts
.keep_locked
, N_("keep the new working tree locked")),
354 OPT_PASSTHRU(0, "track", &opt_track
, NULL
,
355 N_("set up tracking mode (see git-branch(1))"),
356 PARSE_OPT_NOARG
| PARSE_OPT_OPTARG
),
360 memset(&opts
, 0, sizeof(opts
));
362 ac
= parse_options(ac
, av
, prefix
, options
, worktree_usage
, 0);
363 if (!!opts
.detach
+ !!opts
.new_branch
+ !!new_branch_force
> 1)
364 die(_("-b, -B, and --detach are mutually exclusive"));
365 if (ac
< 1 || ac
> 2)
366 usage_with_options(worktree_usage
, options
);
368 path
= prefix_filename(prefix
, av
[0]);
369 branch
= ac
< 2 ?
"HEAD" : av
[1];
371 if (!strcmp(branch
, "-"))
374 opts
.force_new_branch
= !!new_branch_force
;
375 if (opts
.force_new_branch
) {
376 struct strbuf symref
= STRBUF_INIT
;
378 opts
.new_branch
= new_branch_force
;
381 !strbuf_check_branch_ref(&symref
, opts
.new_branch
) &&
382 ref_exists(symref
.buf
))
383 die_if_checked_out(symref
.buf
, 0);
384 strbuf_release(&symref
);
387 if (ac
< 2 && !opts
.new_branch
&& !opts
.detach
) {
389 const char *s
= worktree_basename(path
, &n
);
390 opts
.new_branch
= xstrndup(s
, n
);
393 if (opts
.new_branch
) {
394 struct child_process cp
= CHILD_PROCESS_INIT
;
396 argv_array_push(&cp
.args
, "branch");
397 if (opts
.force_new_branch
)
398 argv_array_push(&cp
.args
, "--force");
399 argv_array_push(&cp
.args
, opts
.new_branch
);
400 argv_array_push(&cp
.args
, branch
);
402 argv_array_push(&cp
.args
, opt_track
);
403 if (run_command(&cp
))
405 branch
= opts
.new_branch
;
406 } else if (opt_track
) {
407 die(_("--[no-]track can only be used if a new branch is created"));
412 return add_worktree(path
, branch
, &opts
);
415 static void show_worktree_porcelain(struct worktree
*wt
)
417 printf("worktree %s\n", wt
->path
);
421 printf("HEAD %s\n", oid_to_hex(&wt
->head_oid
));
423 printf("detached\n");
424 else if (wt
->head_ref
)
425 printf("branch %s\n", wt
->head_ref
);
430 static void show_worktree(struct worktree
*wt
, int path_maxlen
, int abbrev_len
)
432 struct strbuf sb
= STRBUF_INIT
;
433 int cur_path_len
= strlen(wt
->path
);
434 int path_adj
= cur_path_len
- utf8_strwidth(wt
->path
);
436 strbuf_addf(&sb
, "%-*s ", 1 + path_maxlen
+ path_adj
, wt
->path
);
438 strbuf_addstr(&sb
, "(bare)");
440 strbuf_addf(&sb
, "%-*s ", abbrev_len
,
441 find_unique_abbrev(wt
->head_oid
.hash
, DEFAULT_ABBREV
));
443 strbuf_addstr(&sb
, "(detached HEAD)");
444 else if (wt
->head_ref
) {
445 char *ref
= shorten_unambiguous_ref(wt
->head_ref
, 0);
446 strbuf_addf(&sb
, "[%s]", ref
);
449 strbuf_addstr(&sb
, "(error)");
451 printf("%s\n", sb
.buf
);
456 static void measure_widths(struct worktree
**wt
, int *abbrev
, int *maxlen
)
460 for (i
= 0; wt
[i
]; i
++) {
462 int path_len
= strlen(wt
[i
]->path
);
464 if (path_len
> *maxlen
)
466 sha1_len
= strlen(find_unique_abbrev(wt
[i
]->head_oid
.hash
, *abbrev
));
467 if (sha1_len
> *abbrev
)
472 static int list(int ac
, const char **av
, const char *prefix
)
476 struct option options
[] = {
477 OPT_BOOL(0, "porcelain", &porcelain
, N_("machine-readable output")),
481 ac
= parse_options(ac
, av
, prefix
, options
, worktree_usage
, 0);
483 usage_with_options(worktree_usage
, options
);
485 struct worktree
**worktrees
= get_worktrees(GWT_SORT_LINKED
);
486 int path_maxlen
= 0, abbrev
= DEFAULT_ABBREV
, i
;
489 measure_widths(worktrees
, &abbrev
, &path_maxlen
);
491 for (i
= 0; worktrees
[i
]; i
++) {
493 show_worktree_porcelain(worktrees
[i
]);
495 show_worktree(worktrees
[i
], path_maxlen
, abbrev
);
497 free_worktrees(worktrees
);
502 static int lock_worktree(int ac
, const char **av
, const char *prefix
)
504 const char *reason
= "", *old_reason
;
505 struct option options
[] = {
506 OPT_STRING(0, "reason", &reason
, N_("string"),
507 N_("reason for locking")),
510 struct worktree
**worktrees
, *wt
;
512 ac
= parse_options(ac
, av
, prefix
, options
, worktree_usage
, 0);
514 usage_with_options(worktree_usage
, options
);
516 worktrees
= get_worktrees(0);
517 wt
= find_worktree(worktrees
, prefix
, av
[0]);
519 die(_("'%s' is not a working tree"), av
[0]);
520 if (is_main_worktree(wt
))
521 die(_("The main working tree cannot be locked or unlocked"));
523 old_reason
= is_worktree_locked(wt
);
526 die(_("'%s' is already locked, reason: %s"),
528 die(_("'%s' is already locked"), av
[0]);
531 write_file(git_common_path("worktrees/%s/locked", wt
->id
),
533 free_worktrees(worktrees
);
537 static int unlock_worktree(int ac
, const char **av
, const char *prefix
)
539 struct option options
[] = {
542 struct worktree
**worktrees
, *wt
;
545 ac
= parse_options(ac
, av
, prefix
, options
, worktree_usage
, 0);
547 usage_with_options(worktree_usage
, options
);
549 worktrees
= get_worktrees(0);
550 wt
= find_worktree(worktrees
, prefix
, av
[0]);
552 die(_("'%s' is not a working tree"), av
[0]);
553 if (is_main_worktree(wt
))
554 die(_("The main working tree cannot be locked or unlocked"));
555 if (!is_worktree_locked(wt
))
556 die(_("'%s' is not locked"), av
[0]);
557 ret
= unlink_or_warn(git_common_path("worktrees/%s/locked", wt
->id
));
558 free_worktrees(worktrees
);
562 int cmd_worktree(int ac
, const char **av
, const char *prefix
)
564 struct option options
[] = {
568 git_config(git_default_config
, NULL
);
571 usage_with_options(worktree_usage
, options
);
574 if (!strcmp(av
[1], "add"))
575 return add(ac
- 1, av
+ 1, prefix
);
576 if (!strcmp(av
[1], "prune"))
577 return prune(ac
- 1, av
+ 1, prefix
);
578 if (!strcmp(av
[1], "list"))
579 return list(ac
- 1, av
+ 1, prefix
);
580 if (!strcmp(av
[1], "lock"))
581 return lock_worktree(ac
- 1, av
+ 1, prefix
);
582 if (!strcmp(av
[1], "unlock"))
583 return unlock_worktree(ac
- 1, av
+ 1, prefix
);
584 usage_with_options(worktree_usage
, options
);