4 #include "parse-options.h"
5 #include "argv-array.h"
8 #include "run-command.h"
14 static const char * const worktree_usage
[] = {
15 N_("git worktree add [<options>] <path> [<branch>]"),
16 N_("git worktree list [<options>]"),
17 N_("git worktree lock [<options>] <path>"),
18 N_("git worktree prune [<options>]"),
19 N_("git worktree unlock <path>"),
27 const char *new_branch
;
33 static unsigned long expire
;
35 static int prune_worktree(const char *id
, struct strbuf
*reason
)
41 if (!is_directory(git_path("worktrees/%s", id
))) {
42 strbuf_addf(reason
, _("Removing worktrees/%s: not a valid directory"), id
);
45 if (file_exists(git_path("worktrees/%s/locked", id
)))
47 if (stat(git_path("worktrees/%s/gitdir", id
), &st
)) {
48 strbuf_addf(reason
, _("Removing worktrees/%s: gitdir file does not exist"), id
);
51 fd
= open(git_path("worktrees/%s/gitdir", id
), O_RDONLY
);
53 strbuf_addf(reason
, _("Removing worktrees/%s: unable to read gitdir file (%s)"),
59 read_in_full(fd
, path
, len
);
61 while (len
&& (path
[len
- 1] == '\n' || path
[len
- 1] == '\r'))
64 strbuf_addf(reason
, _("Removing worktrees/%s: invalid gitdir file"), id
);
69 if (!file_exists(path
)) {
73 * the repo is moved manually and has not been
76 if (!stat(git_path("worktrees/%s/link", id
), &st_link
) &&
79 if (st
.st_mtime
<= expire
) {
80 strbuf_addf(reason
, _("Removing worktrees/%s: gitdir file points to non-existent location"), id
);
90 static void prune_worktrees(void)
92 struct strbuf reason
= STRBUF_INIT
;
93 struct strbuf path
= STRBUF_INIT
;
94 DIR *dir
= opendir(git_path("worktrees"));
99 while ((d
= readdir(dir
)) != NULL
) {
100 if (is_dot_or_dotdot(d
->d_name
))
102 strbuf_reset(&reason
);
103 if (!prune_worktree(d
->d_name
, &reason
))
105 if (show_only
|| verbose
)
106 printf("%s\n", reason
.buf
);
110 strbuf_addstr(&path
, git_path("worktrees/%s", d
->d_name
));
111 ret
= remove_dir_recursively(&path
, 0);
112 if (ret
< 0 && errno
== ENOTDIR
)
113 ret
= unlink(path
.buf
);
115 error_errno(_("failed to remove '%s'"), path
.buf
);
119 rmdir(git_path("worktrees"));
120 strbuf_release(&reason
);
121 strbuf_release(&path
);
124 static int prune(int ac
, const char **av
, const char *prefix
)
126 struct option options
[] = {
127 OPT__DRY_RUN(&show_only
, N_("do not remove, show only")),
128 OPT__VERBOSE(&verbose
, N_("report pruned working trees")),
129 OPT_EXPIRY_DATE(0, "expire", &expire
,
130 N_("expire working trees older than <time>")),
135 ac
= parse_options(ac
, av
, prefix
, options
, worktree_usage
, 0);
137 usage_with_options(worktree_usage
, options
);
142 static char *junk_work_tree
;
143 static char *junk_git_dir
;
145 static pid_t junk_pid
;
147 static void remove_junk(void)
149 struct strbuf sb
= STRBUF_INIT
;
150 if (!is_junk
|| getpid() != junk_pid
)
153 strbuf_addstr(&sb
, junk_git_dir
);
154 remove_dir_recursively(&sb
, 0);
157 if (junk_work_tree
) {
158 strbuf_addstr(&sb
, junk_work_tree
);
159 remove_dir_recursively(&sb
, 0);
164 static void remove_junk_on_signal(int signo
)
171 static const char *worktree_basename(const char *path
, int *olen
)
177 while (len
&& is_dir_sep(path
[len
- 1]))
180 for (name
= path
+ len
- 1; name
> path
; name
--)
181 if (is_dir_sep(*name
)) {
190 static int add_worktree(const char *path
, const char *refname
,
191 const struct add_opts
*opts
)
193 struct strbuf sb_git
= STRBUF_INIT
, sb_repo
= STRBUF_INIT
;
194 struct strbuf sb
= STRBUF_INIT
;
197 struct child_process cp
= CHILD_PROCESS_INIT
;
198 struct argv_array child_env
= ARGV_ARRAY_INIT
;
199 int counter
= 0, len
, ret
;
200 struct strbuf symref
= STRBUF_INIT
;
201 struct commit
*commit
= NULL
;
203 if (file_exists(path
) && !is_empty_dir(path
))
204 die(_("'%s' already exists"), path
);
206 /* is 'refname' a branch or commit? */
207 if (!opts
->detach
&& !strbuf_check_branch_ref(&symref
, refname
) &&
208 ref_exists(symref
.buf
)) { /* it's a branch */
210 die_if_checked_out(symref
.buf
, 0);
211 } else { /* must be a commit */
212 commit
= lookup_commit_reference_by_name(refname
);
214 die(_("invalid reference: %s"), refname
);
217 name
= worktree_basename(path
, &len
);
218 strbuf_addstr(&sb_repo
,
219 git_path("worktrees/%.*s", (int)(path
+ len
- name
), name
));
221 if (safe_create_leading_directories_const(sb_repo
.buf
))
222 die_errno(_("could not create leading directories of '%s'"),
224 while (!stat(sb_repo
.buf
, &st
)) {
226 strbuf_setlen(&sb_repo
, len
);
227 strbuf_addf(&sb_repo
, "%d", counter
);
229 name
= strrchr(sb_repo
.buf
, '/') + 1;
233 sigchain_push_common(remove_junk_on_signal
);
235 if (mkdir(sb_repo
.buf
, 0777))
236 die_errno(_("could not create directory of '%s'"), sb_repo
.buf
);
237 junk_git_dir
= xstrdup(sb_repo
.buf
);
241 * lock the incomplete repo so prune won't delete it, unlock
242 * after the preparation is over.
244 strbuf_addf(&sb
, "%s/locked", sb_repo
.buf
);
245 write_file(sb
.buf
, "initializing");
247 strbuf_addf(&sb_git
, "%s/.git", path
);
248 if (safe_create_leading_directories_const(sb_git
.buf
))
249 die_errno(_("could not create leading directories of '%s'"),
251 junk_work_tree
= xstrdup(path
);
254 strbuf_addf(&sb
, "%s/gitdir", sb_repo
.buf
);
255 write_file(sb
.buf
, "%s", real_path(sb_git
.buf
));
256 write_file(sb_git
.buf
, "gitdir: %s/worktrees/%s",
257 real_path(get_git_common_dir()), name
);
259 * This is to keep resolve_ref() happy. We need a valid HEAD
260 * or is_git_directory() will reject the directory. Any value which
261 * looks like an object ID will do since it will be immediately
262 * replaced by the symbolic-ref or update-ref invocation in the new
266 strbuf_addf(&sb
, "%s/HEAD", sb_repo
.buf
);
267 write_file(sb
.buf
, "%s", sha1_to_hex(null_sha1
));
269 strbuf_addf(&sb
, "%s/commondir", sb_repo
.buf
);
270 write_file(sb
.buf
, "../..");
272 fprintf_ln(stderr
, _("Preparing %s (identifier %s)"), path
, name
);
274 argv_array_pushf(&child_env
, "%s=%s", GIT_DIR_ENVIRONMENT
, sb_git
.buf
);
275 argv_array_pushf(&child_env
, "%s=%s", GIT_WORK_TREE_ENVIRONMENT
, path
);
279 argv_array_pushl(&cp
.args
, "update-ref", "HEAD",
280 oid_to_hex(&commit
->object
.oid
), NULL
);
282 argv_array_pushl(&cp
.args
, "symbolic-ref", "HEAD",
284 cp
.env
= child_env
.argv
;
285 ret
= run_command(&cp
);
289 if (opts
->checkout
) {
291 argv_array_clear(&cp
.args
);
292 argv_array_pushl(&cp
.args
, "reset", "--hard", NULL
);
293 cp
.env
= child_env
.argv
;
294 ret
= run_command(&cp
);
300 free(junk_work_tree
);
302 junk_work_tree
= NULL
;
307 strbuf_addf(&sb
, "%s/locked", sb_repo
.buf
);
308 unlink_or_warn(sb
.buf
);
309 argv_array_clear(&child_env
);
311 strbuf_release(&symref
);
312 strbuf_release(&sb_repo
);
313 strbuf_release(&sb_git
);
317 static int add(int ac
, const char **av
, const char *prefix
)
319 struct add_opts opts
;
320 const char *new_branch_force
= NULL
;
321 const char *path
, *branch
;
322 struct option options
[] = {
323 OPT__FORCE(&opts
.force
, N_("checkout <branch> even if already checked out in other worktree")),
324 OPT_STRING('b', NULL
, &opts
.new_branch
, N_("branch"),
325 N_("create a new branch")),
326 OPT_STRING('B', NULL
, &new_branch_force
, N_("branch"),
327 N_("create or reset a branch")),
328 OPT_BOOL(0, "detach", &opts
.detach
, N_("detach HEAD at named commit")),
329 OPT_BOOL(0, "checkout", &opts
.checkout
, N_("populate the new working tree")),
333 memset(&opts
, 0, sizeof(opts
));
335 ac
= parse_options(ac
, av
, prefix
, options
, worktree_usage
, 0);
336 if (!!opts
.detach
+ !!opts
.new_branch
+ !!new_branch_force
> 1)
337 die(_("-b, -B, and --detach are mutually exclusive"));
338 if (ac
< 1 || ac
> 2)
339 usage_with_options(worktree_usage
, options
);
341 path
= prefix_filename(prefix
, strlen(prefix
), av
[0]);
342 branch
= ac
< 2 ? "HEAD" : av
[1];
344 if (!strcmp(branch
, "-"))
347 opts
.force_new_branch
= !!new_branch_force
;
348 if (opts
.force_new_branch
) {
349 struct strbuf symref
= STRBUF_INIT
;
351 opts
.new_branch
= new_branch_force
;
354 !strbuf_check_branch_ref(&symref
, opts
.new_branch
) &&
355 ref_exists(symref
.buf
))
356 die_if_checked_out(symref
.buf
, 0);
357 strbuf_release(&symref
);
360 if (ac
< 2 && !opts
.new_branch
&& !opts
.detach
) {
362 const char *s
= worktree_basename(path
, &n
);
363 opts
.new_branch
= xstrndup(s
, n
);
366 if (opts
.new_branch
) {
367 struct child_process cp
= CHILD_PROCESS_INIT
;
369 argv_array_push(&cp
.args
, "branch");
370 if (opts
.force_new_branch
)
371 argv_array_push(&cp
.args
, "--force");
372 argv_array_push(&cp
.args
, opts
.new_branch
);
373 argv_array_push(&cp
.args
, branch
);
374 if (run_command(&cp
))
376 branch
= opts
.new_branch
;
379 return add_worktree(path
, branch
, &opts
);
382 static void show_worktree_porcelain(struct worktree
*wt
)
384 printf("worktree %s\n", wt
->path
);
388 printf("HEAD %s\n", sha1_to_hex(wt
->head_sha1
));
390 printf("detached\n");
391 else if (wt
->head_ref
)
392 printf("branch %s\n", wt
->head_ref
);
397 static void show_worktree(struct worktree
*wt
, int path_maxlen
, int abbrev_len
)
399 struct strbuf sb
= STRBUF_INIT
;
400 int cur_path_len
= strlen(wt
->path
);
401 int path_adj
= cur_path_len
- utf8_strwidth(wt
->path
);
403 strbuf_addf(&sb
, "%-*s ", 1 + path_maxlen
+ path_adj
, wt
->path
);
405 strbuf_addstr(&sb
, "(bare)");
407 strbuf_addf(&sb
, "%-*s ", abbrev_len
,
408 find_unique_abbrev(wt
->head_sha1
, DEFAULT_ABBREV
));
410 strbuf_addstr(&sb
, "(detached HEAD)");
411 else if (wt
->head_ref
)
412 strbuf_addf(&sb
, "[%s]", shorten_unambiguous_ref(wt
->head_ref
, 0));
414 strbuf_addstr(&sb
, "(error)");
416 printf("%s\n", sb
.buf
);
421 static void measure_widths(struct worktree
**wt
, int *abbrev
, int *maxlen
)
425 for (i
= 0; wt
[i
]; i
++) {
427 int path_len
= strlen(wt
[i
]->path
);
429 if (path_len
> *maxlen
)
431 sha1_len
= strlen(find_unique_abbrev(wt
[i
]->head_sha1
, *abbrev
));
432 if (sha1_len
> *abbrev
)
437 static int list(int ac
, const char **av
, const char *prefix
)
441 struct option options
[] = {
442 OPT_BOOL(0, "porcelain", &porcelain
, N_("machine-readable output")),
446 ac
= parse_options(ac
, av
, prefix
, options
, worktree_usage
, 0);
448 usage_with_options(worktree_usage
, options
);
450 struct worktree
**worktrees
= get_worktrees(GWT_SORT_LINKED
);
451 int path_maxlen
= 0, abbrev
= DEFAULT_ABBREV
, i
;
454 measure_widths(worktrees
, &abbrev
, &path_maxlen
);
456 for (i
= 0; worktrees
[i
]; i
++) {
458 show_worktree_porcelain(worktrees
[i
]);
460 show_worktree(worktrees
[i
], path_maxlen
, abbrev
);
462 free_worktrees(worktrees
);
467 static int lock_worktree(int ac
, const char **av
, const char *prefix
)
469 const char *reason
= "", *old_reason
;
470 struct option options
[] = {
471 OPT_STRING(0, "reason", &reason
, N_("string"),
472 N_("reason for locking")),
475 struct worktree
**worktrees
, *wt
;
477 ac
= parse_options(ac
, av
, prefix
, options
, worktree_usage
, 0);
479 usage_with_options(worktree_usage
, options
);
481 worktrees
= get_worktrees(0);
482 wt
= find_worktree(worktrees
, prefix
, av
[0]);
484 die(_("'%s' is not a working tree"), av
[0]);
485 if (is_main_worktree(wt
))
486 die(_("The main working tree cannot be locked or unlocked"));
488 old_reason
= is_worktree_locked(wt
);
491 die(_("'%s' is already locked, reason: %s"),
493 die(_("'%s' is already locked"), av
[0]);
496 write_file(git_common_path("worktrees/%s/locked", wt
->id
),
498 free_worktrees(worktrees
);
502 static int unlock_worktree(int ac
, const char **av
, const char *prefix
)
504 struct option options
[] = {
507 struct worktree
**worktrees
, *wt
;
510 ac
= parse_options(ac
, av
, prefix
, options
, worktree_usage
, 0);
512 usage_with_options(worktree_usage
, options
);
514 worktrees
= get_worktrees(0);
515 wt
= find_worktree(worktrees
, prefix
, av
[0]);
517 die(_("'%s' is not a working tree"), av
[0]);
518 if (is_main_worktree(wt
))
519 die(_("The main working tree cannot be locked or unlocked"));
520 if (!is_worktree_locked(wt
))
521 die(_("'%s' is not locked"), av
[0]);
522 ret
= unlink_or_warn(git_common_path("worktrees/%s/locked", wt
->id
));
523 free_worktrees(worktrees
);
527 int cmd_worktree(int ac
, const char **av
, const char *prefix
)
529 struct option options
[] = {
533 git_config(git_default_config
, NULL
);
536 usage_with_options(worktree_usage
, options
);
539 if (!strcmp(av
[1], "add"))
540 return add(ac
- 1, av
+ 1, prefix
);
541 if (!strcmp(av
[1], "prune"))
542 return prune(ac
- 1, av
+ 1, prefix
);
543 if (!strcmp(av
[1], "list"))
544 return list(ac
- 1, av
+ 1, prefix
);
545 if (!strcmp(av
[1], "lock"))
546 return lock_worktree(ac
- 1, av
+ 1, prefix
);
547 if (!strcmp(av
[1], "unlock"))
548 return unlock_worktree(ac
- 1, av
+ 1, prefix
);
549 usage_with_options(worktree_usage
, options
);