rebase --apply: set ORIG_HEAD correctly
[git.git] / worktree.c
blob2c155b1015082e98634e4a5c80563973e2b29cc4
1 #include "cache.h"
2 #include "repository.h"
3 #include "refs.h"
4 #include "strbuf.h"
5 #include "worktree.h"
6 #include "dir.h"
7 #include "wt-status.h"
9 void free_worktrees(struct worktree **worktrees)
11 int i = 0;
13 for (i = 0; worktrees[i]; i++) {
14 free(worktrees[i]->path);
15 free(worktrees[i]->id);
16 free(worktrees[i]->head_ref);
17 free(worktrees[i]->lock_reason);
18 free(worktrees[i]->prune_reason);
19 free(worktrees[i]);
21 free (worktrees);
24 /**
25 * Update head_oid, head_ref and is_detached of the given worktree
27 static void add_head_info(struct worktree *wt)
29 int flags;
30 const char *target;
31 int ignore_errno;
33 target = refs_resolve_ref_unsafe(get_worktree_ref_store(wt),
34 "HEAD",
36 &wt->head_oid, &flags,
37 &ignore_errno);
38 if (!target)
39 return;
41 if (flags & REF_ISSYMREF)
42 wt->head_ref = xstrdup(target);
43 else
44 wt->is_detached = 1;
47 /**
48 * get the main worktree
50 static struct worktree *get_main_worktree(void)
52 struct worktree *worktree = NULL;
53 struct strbuf worktree_path = STRBUF_INIT;
55 strbuf_add_real_path(&worktree_path, get_git_common_dir());
56 strbuf_strip_suffix(&worktree_path, "/.git");
58 CALLOC_ARRAY(worktree, 1);
59 worktree->path = strbuf_detach(&worktree_path, NULL);
61 * NEEDSWORK: If this function is called from a secondary worktree and
62 * config.worktree is present, is_bare_repository_cfg will reflect the
63 * contents of config.worktree, not the contents of the main worktree.
64 * This means that worktree->is_bare may be set to 0 even if the main
65 * worktree is configured to be bare.
67 worktree->is_bare = (is_bare_repository_cfg == 1) ||
68 is_bare_repository();
69 add_head_info(worktree);
70 return worktree;
73 static struct worktree *get_linked_worktree(const char *id)
75 struct worktree *worktree = NULL;
76 struct strbuf path = STRBUF_INIT;
77 struct strbuf worktree_path = STRBUF_INIT;
79 if (!id)
80 die("Missing linked worktree name");
82 strbuf_git_common_path(&path, the_repository, "worktrees/%s/gitdir", id);
83 if (strbuf_read_file(&worktree_path, path.buf, 0) <= 0)
84 /* invalid gitdir file */
85 goto done;
86 strbuf_rtrim(&worktree_path);
87 strbuf_strip_suffix(&worktree_path, "/.git");
89 CALLOC_ARRAY(worktree, 1);
90 worktree->path = strbuf_detach(&worktree_path, NULL);
91 worktree->id = xstrdup(id);
92 add_head_info(worktree);
94 done:
95 strbuf_release(&path);
96 strbuf_release(&worktree_path);
97 return worktree;
100 static void mark_current_worktree(struct worktree **worktrees)
102 char *git_dir = absolute_pathdup(get_git_dir());
103 int i;
105 for (i = 0; worktrees[i]; i++) {
106 struct worktree *wt = worktrees[i];
107 const char *wt_git_dir = get_worktree_git_dir(wt);
109 if (!fspathcmp(git_dir, absolute_path(wt_git_dir))) {
110 wt->is_current = 1;
111 break;
114 free(git_dir);
117 struct worktree **get_worktrees(void)
119 struct worktree **list = NULL;
120 struct strbuf path = STRBUF_INIT;
121 DIR *dir;
122 struct dirent *d;
123 int counter = 0, alloc = 2;
125 ALLOC_ARRAY(list, alloc);
127 list[counter++] = get_main_worktree();
129 strbuf_addf(&path, "%s/worktrees", get_git_common_dir());
130 dir = opendir(path.buf);
131 strbuf_release(&path);
132 if (dir) {
133 while ((d = readdir_skip_dot_and_dotdot(dir)) != NULL) {
134 struct worktree *linked = NULL;
136 if ((linked = get_linked_worktree(d->d_name))) {
137 ALLOC_GROW(list, counter + 1, alloc);
138 list[counter++] = linked;
141 closedir(dir);
143 ALLOC_GROW(list, counter + 1, alloc);
144 list[counter] = NULL;
146 mark_current_worktree(list);
147 return list;
150 const char *get_worktree_git_dir(const struct worktree *wt)
152 if (!wt)
153 return get_git_dir();
154 else if (!wt->id)
155 return get_git_common_dir();
156 else
157 return git_common_path("worktrees/%s", wt->id);
160 static struct worktree *find_worktree_by_suffix(struct worktree **list,
161 const char *suffix)
163 struct worktree *found = NULL;
164 int nr_found = 0, suffixlen;
166 suffixlen = strlen(suffix);
167 if (!suffixlen)
168 return NULL;
170 for (; *list && nr_found < 2; list++) {
171 const char *path = (*list)->path;
172 int pathlen = strlen(path);
173 int start = pathlen - suffixlen;
175 /* suffix must start at directory boundary */
176 if ((!start || (start > 0 && is_dir_sep(path[start - 1]))) &&
177 !fspathcmp(suffix, path + start)) {
178 found = *list;
179 nr_found++;
182 return nr_found == 1 ? found : NULL;
185 struct worktree *find_worktree(struct worktree **list,
186 const char *prefix,
187 const char *arg)
189 struct worktree *wt;
190 char *to_free = NULL;
192 if ((wt = find_worktree_by_suffix(list, arg)))
193 return wt;
195 if (prefix)
196 arg = to_free = prefix_filename(prefix, arg);
197 wt = find_worktree_by_path(list, arg);
198 free(to_free);
199 return wt;
202 struct worktree *find_worktree_by_path(struct worktree **list, const char *p)
204 struct strbuf wt_path = STRBUF_INIT;
205 char *path = real_pathdup(p, 0);
207 if (!path)
208 return NULL;
209 for (; *list; list++) {
210 if (!strbuf_realpath(&wt_path, (*list)->path, 0))
211 continue;
213 if (!fspathcmp(path, wt_path.buf))
214 break;
216 free(path);
217 strbuf_release(&wt_path);
218 return *list;
221 int is_main_worktree(const struct worktree *wt)
223 return !wt->id;
226 const char *worktree_lock_reason(struct worktree *wt)
228 if (is_main_worktree(wt))
229 return NULL;
231 if (!wt->lock_reason_valid) {
232 struct strbuf path = STRBUF_INIT;
234 strbuf_addstr(&path, worktree_git_path(wt, "locked"));
235 if (file_exists(path.buf)) {
236 struct strbuf lock_reason = STRBUF_INIT;
237 if (strbuf_read_file(&lock_reason, path.buf, 0) < 0)
238 die_errno(_("failed to read '%s'"), path.buf);
239 strbuf_trim(&lock_reason);
240 wt->lock_reason = strbuf_detach(&lock_reason, NULL);
241 } else
242 wt->lock_reason = NULL;
243 wt->lock_reason_valid = 1;
244 strbuf_release(&path);
247 return wt->lock_reason;
250 const char *worktree_prune_reason(struct worktree *wt, timestamp_t expire)
252 struct strbuf reason = STRBUF_INIT;
253 char *path = NULL;
255 if (is_main_worktree(wt))
256 return NULL;
257 if (wt->prune_reason_valid)
258 return wt->prune_reason;
260 if (should_prune_worktree(wt->id, &reason, &path, expire))
261 wt->prune_reason = strbuf_detach(&reason, NULL);
262 wt->prune_reason_valid = 1;
264 strbuf_release(&reason);
265 free(path);
266 return wt->prune_reason;
269 /* convenient wrapper to deal with NULL strbuf */
270 __attribute__((format (printf, 2, 3)))
271 static void strbuf_addf_gently(struct strbuf *buf, const char *fmt, ...)
273 va_list params;
275 if (!buf)
276 return;
278 va_start(params, fmt);
279 strbuf_vaddf(buf, fmt, params);
280 va_end(params);
283 int validate_worktree(const struct worktree *wt, struct strbuf *errmsg,
284 unsigned flags)
286 struct strbuf wt_path = STRBUF_INIT;
287 struct strbuf realpath = STRBUF_INIT;
288 char *path = NULL;
289 int err, ret = -1;
291 strbuf_addf(&wt_path, "%s/.git", wt->path);
293 if (is_main_worktree(wt)) {
294 if (is_directory(wt_path.buf)) {
295 ret = 0;
296 goto done;
299 * Main worktree using .git file to point to the
300 * repository would make it impossible to know where
301 * the actual worktree is if this function is executed
302 * from another worktree. No .git file support for now.
304 strbuf_addf_gently(errmsg,
305 _("'%s' at main working tree is not the repository directory"),
306 wt_path.buf);
307 goto done;
311 * Make sure "gitdir" file points to a real .git file and that
312 * file points back here.
314 if (!is_absolute_path(wt->path)) {
315 strbuf_addf_gently(errmsg,
316 _("'%s' file does not contain absolute path to the working tree location"),
317 git_common_path("worktrees/%s/gitdir", wt->id));
318 goto done;
321 if (flags & WT_VALIDATE_WORKTREE_MISSING_OK &&
322 !file_exists(wt->path)) {
323 ret = 0;
324 goto done;
327 if (!file_exists(wt_path.buf)) {
328 strbuf_addf_gently(errmsg, _("'%s' does not exist"), wt_path.buf);
329 goto done;
332 path = xstrdup_or_null(read_gitfile_gently(wt_path.buf, &err));
333 if (!path) {
334 strbuf_addf_gently(errmsg, _("'%s' is not a .git file, error code %d"),
335 wt_path.buf, err);
336 goto done;
339 strbuf_realpath(&realpath, git_common_path("worktrees/%s", wt->id), 1);
340 ret = fspathcmp(path, realpath.buf);
342 if (ret)
343 strbuf_addf_gently(errmsg, _("'%s' does not point back to '%s'"),
344 wt->path, git_common_path("worktrees/%s", wt->id));
345 done:
346 free(path);
347 strbuf_release(&wt_path);
348 strbuf_release(&realpath);
349 return ret;
352 void update_worktree_location(struct worktree *wt, const char *path_)
354 struct strbuf path = STRBUF_INIT;
356 if (is_main_worktree(wt))
357 BUG("can't relocate main worktree");
359 strbuf_realpath(&path, path_, 1);
360 if (fspathcmp(wt->path, path.buf)) {
361 write_file(git_common_path("worktrees/%s/gitdir", wt->id),
362 "%s/.git", path.buf);
363 free(wt->path);
364 wt->path = strbuf_detach(&path, NULL);
366 strbuf_release(&path);
369 int is_worktree_being_rebased(const struct worktree *wt,
370 const char *target)
372 struct wt_status_state state;
373 int found_rebase;
375 memset(&state, 0, sizeof(state));
376 found_rebase = wt_status_check_rebase(wt, &state) &&
377 (state.rebase_in_progress ||
378 state.rebase_interactive_in_progress) &&
379 state.branch &&
380 skip_prefix(target, "refs/heads/", &target) &&
381 !strcmp(state.branch, target);
382 wt_status_state_free_buffers(&state);
383 return found_rebase;
386 int is_worktree_being_bisected(const struct worktree *wt,
387 const char *target)
389 struct wt_status_state state;
390 int found_bisect;
392 memset(&state, 0, sizeof(state));
393 found_bisect = wt_status_check_bisect(wt, &state) &&
394 state.branch &&
395 skip_prefix(target, "refs/heads/", &target) &&
396 !strcmp(state.branch, target);
397 wt_status_state_free_buffers(&state);
398 return found_bisect;
402 * note: this function should be able to detect shared symref even if
403 * HEAD is temporarily detached (e.g. in the middle of rebase or
404 * bisect). New commands that do similar things should update this
405 * function as well.
407 const struct worktree *find_shared_symref(const char *symref,
408 const char *target)
410 const struct worktree *existing = NULL;
411 static struct worktree **worktrees;
412 int i = 0;
414 if (worktrees)
415 free_worktrees(worktrees);
416 worktrees = get_worktrees();
418 for (i = 0; worktrees[i]; i++) {
419 struct worktree *wt = worktrees[i];
420 const char *symref_target;
421 struct ref_store *refs;
422 int flags;
423 int ignore_errno;
425 if (wt->is_bare)
426 continue;
428 if (wt->is_detached && !strcmp(symref, "HEAD")) {
429 if (is_worktree_being_rebased(wt, target)) {
430 existing = wt;
431 break;
433 if (is_worktree_being_bisected(wt, target)) {
434 existing = wt;
435 break;
439 refs = get_worktree_ref_store(wt);
440 symref_target = refs_resolve_ref_unsafe(refs, symref, 0,
441 NULL, &flags,
442 &ignore_errno);
443 if ((flags & REF_ISSYMREF) &&
444 symref_target && !strcmp(symref_target, target)) {
445 existing = wt;
446 break;
450 return existing;
453 int submodule_uses_worktrees(const char *path)
455 char *submodule_gitdir;
456 struct strbuf sb = STRBUF_INIT, err = STRBUF_INIT;
457 DIR *dir;
458 struct dirent *d;
459 int ret = 0;
460 struct repository_format format = REPOSITORY_FORMAT_INIT;
462 submodule_gitdir = git_pathdup_submodule(path, "%s", "");
463 if (!submodule_gitdir)
464 return 0;
466 /* The env would be set for the superproject. */
467 get_common_dir_noenv(&sb, submodule_gitdir);
468 free(submodule_gitdir);
470 strbuf_addstr(&sb, "/config");
471 read_repository_format(&format, sb.buf);
472 if (verify_repository_format(&format, &err)) {
473 strbuf_release(&err);
474 strbuf_release(&sb);
475 clear_repository_format(&format);
476 return 1;
478 clear_repository_format(&format);
479 strbuf_release(&err);
481 /* Replace config by worktrees. */
482 strbuf_setlen(&sb, sb.len - strlen("config"));
483 strbuf_addstr(&sb, "worktrees");
485 /* See if there is any file inside the worktrees directory. */
486 dir = opendir(sb.buf);
487 strbuf_release(&sb);
489 if (!dir)
490 return 0;
492 d = readdir_skip_dot_and_dotdot(dir);
493 if (d != NULL)
494 ret = 1;
495 closedir(dir);
496 return ret;
499 int parse_worktree_ref(const char *worktree_ref, const char **name,
500 int *name_length, const char **ref)
502 if (skip_prefix(worktree_ref, "main-worktree/", &worktree_ref)) {
503 if (!*worktree_ref)
504 return -1;
505 if (name)
506 *name = NULL;
507 if (name_length)
508 *name_length = 0;
509 if (ref)
510 *ref = worktree_ref;
511 return 0;
513 if (skip_prefix(worktree_ref, "worktrees/", &worktree_ref)) {
514 const char *slash = strchr(worktree_ref, '/');
516 if (!slash || slash == worktree_ref || !slash[1])
517 return -1;
518 if (name)
519 *name = worktree_ref;
520 if (name_length)
521 *name_length = slash - worktree_ref;
522 if (ref)
523 *ref = slash + 1;
524 return 0;
526 return -1;
529 void strbuf_worktree_ref(const struct worktree *wt,
530 struct strbuf *sb,
531 const char *refname)
533 switch (ref_type(refname)) {
534 case REF_TYPE_PSEUDOREF:
535 case REF_TYPE_PER_WORKTREE:
536 if (wt && !wt->is_current) {
537 if (is_main_worktree(wt))
538 strbuf_addstr(sb, "main-worktree/");
539 else
540 strbuf_addf(sb, "worktrees/%s/", wt->id);
542 break;
544 case REF_TYPE_MAIN_PSEUDOREF:
545 case REF_TYPE_OTHER_PSEUDOREF:
546 break;
548 case REF_TYPE_NORMAL:
550 * For shared refs, don't prefix worktrees/ or
551 * main-worktree/. It's not necessary and
552 * files-backend.c can't handle it anyway.
554 break;
556 strbuf_addstr(sb, refname);
559 int other_head_refs(each_ref_fn fn, void *cb_data)
561 struct worktree **worktrees, **p;
562 struct strbuf refname = STRBUF_INIT;
563 int ret = 0;
565 worktrees = get_worktrees();
566 for (p = worktrees; *p; p++) {
567 struct worktree *wt = *p;
568 struct object_id oid;
569 int flag;
570 int ignore_errno;
572 if (wt->is_current)
573 continue;
575 strbuf_reset(&refname);
576 strbuf_worktree_ref(wt, &refname, "HEAD");
577 if (refs_resolve_ref_unsafe(get_main_ref_store(the_repository),
578 refname.buf,
579 RESOLVE_REF_READING,
580 &oid, &flag, &ignore_errno))
581 ret = fn(refname.buf, &oid, flag, cb_data);
582 if (ret)
583 break;
585 free_worktrees(worktrees);
586 strbuf_release(&refname);
587 return ret;
591 * Repair worktree's /path/to/worktree/.git file if missing, corrupt, or not
592 * pointing at <repo>/worktrees/<id>.
594 static void repair_gitfile(struct worktree *wt,
595 worktree_repair_fn fn, void *cb_data)
597 struct strbuf dotgit = STRBUF_INIT;
598 struct strbuf repo = STRBUF_INIT;
599 char *backlink;
600 const char *repair = NULL;
601 int err;
603 /* missing worktree can't be repaired */
604 if (!file_exists(wt->path))
605 return;
607 if (!is_directory(wt->path)) {
608 fn(1, wt->path, _("not a directory"), cb_data);
609 return;
612 strbuf_realpath(&repo, git_common_path("worktrees/%s", wt->id), 1);
613 strbuf_addf(&dotgit, "%s/.git", wt->path);
614 backlink = xstrdup_or_null(read_gitfile_gently(dotgit.buf, &err));
616 if (err == READ_GITFILE_ERR_NOT_A_FILE)
617 fn(1, wt->path, _(".git is not a file"), cb_data);
618 else if (err)
619 repair = _(".git file broken");
620 else if (fspathcmp(backlink, repo.buf))
621 repair = _(".git file incorrect");
623 if (repair) {
624 fn(0, wt->path, repair, cb_data);
625 write_file(dotgit.buf, "gitdir: %s", repo.buf);
628 free(backlink);
629 strbuf_release(&repo);
630 strbuf_release(&dotgit);
633 static void repair_noop(int iserr, const char *path, const char *msg,
634 void *cb_data)
636 /* nothing */
639 void repair_worktrees(worktree_repair_fn fn, void *cb_data)
641 struct worktree **worktrees = get_worktrees();
642 struct worktree **wt = worktrees + 1; /* +1 skips main worktree */
644 if (!fn)
645 fn = repair_noop;
646 for (; *wt; wt++)
647 repair_gitfile(*wt, fn, cb_data);
648 free_worktrees(worktrees);
651 static int is_main_worktree_path(const char *path)
653 struct strbuf target = STRBUF_INIT;
654 struct strbuf maindir = STRBUF_INIT;
655 int cmp;
657 strbuf_add_real_path(&target, path);
658 strbuf_strip_suffix(&target, "/.git");
659 strbuf_add_real_path(&maindir, get_git_common_dir());
660 strbuf_strip_suffix(&maindir, "/.git");
661 cmp = fspathcmp(maindir.buf, target.buf);
663 strbuf_release(&maindir);
664 strbuf_release(&target);
665 return !cmp;
669 * If both the main worktree and linked worktree have been moved, then the
670 * gitfile /path/to/worktree/.git won't point into the repository, thus we
671 * won't know which <repo>/worktrees/<id>/gitdir to repair. However, we may
672 * be able to infer the gitdir by manually reading /path/to/worktree/.git,
673 * extracting the <id>, and checking if <repo>/worktrees/<id> exists.
675 static char *infer_backlink(const char *gitfile)
677 struct strbuf actual = STRBUF_INIT;
678 struct strbuf inferred = STRBUF_INIT;
679 const char *id;
681 if (strbuf_read_file(&actual, gitfile, 0) < 0)
682 goto error;
683 if (!starts_with(actual.buf, "gitdir:"))
684 goto error;
685 if (!(id = find_last_dir_sep(actual.buf)))
686 goto error;
687 strbuf_trim(&actual);
688 id++; /* advance past '/' to point at <id> */
689 if (!*id)
690 goto error;
691 strbuf_git_common_path(&inferred, the_repository, "worktrees/%s", id);
692 if (!is_directory(inferred.buf))
693 goto error;
695 strbuf_release(&actual);
696 return strbuf_detach(&inferred, NULL);
698 error:
699 strbuf_release(&actual);
700 strbuf_release(&inferred);
701 return NULL;
705 * Repair <repo>/worktrees/<id>/gitdir if missing, corrupt, or not pointing at
706 * the worktree's path.
708 void repair_worktree_at_path(const char *path,
709 worktree_repair_fn fn, void *cb_data)
711 struct strbuf dotgit = STRBUF_INIT;
712 struct strbuf realdotgit = STRBUF_INIT;
713 struct strbuf gitdir = STRBUF_INIT;
714 struct strbuf olddotgit = STRBUF_INIT;
715 char *backlink = NULL;
716 const char *repair = NULL;
717 int err;
719 if (!fn)
720 fn = repair_noop;
722 if (is_main_worktree_path(path))
723 goto done;
725 strbuf_addf(&dotgit, "%s/.git", path);
726 if (!strbuf_realpath(&realdotgit, dotgit.buf, 0)) {
727 fn(1, path, _("not a valid path"), cb_data);
728 goto done;
731 backlink = xstrdup_or_null(read_gitfile_gently(realdotgit.buf, &err));
732 if (err == READ_GITFILE_ERR_NOT_A_FILE) {
733 fn(1, realdotgit.buf, _("unable to locate repository; .git is not a file"), cb_data);
734 goto done;
735 } else if (err == READ_GITFILE_ERR_NOT_A_REPO) {
736 if (!(backlink = infer_backlink(realdotgit.buf))) {
737 fn(1, realdotgit.buf, _("unable to locate repository; .git file does not reference a repository"), cb_data);
738 goto done;
740 } else if (err) {
741 fn(1, realdotgit.buf, _("unable to locate repository; .git file broken"), cb_data);
742 goto done;
745 strbuf_addf(&gitdir, "%s/gitdir", backlink);
746 if (strbuf_read_file(&olddotgit, gitdir.buf, 0) < 0)
747 repair = _("gitdir unreadable");
748 else {
749 strbuf_rtrim(&olddotgit);
750 if (fspathcmp(olddotgit.buf, realdotgit.buf))
751 repair = _("gitdir incorrect");
754 if (repair) {
755 fn(0, gitdir.buf, repair, cb_data);
756 write_file(gitdir.buf, "%s", realdotgit.buf);
758 done:
759 free(backlink);
760 strbuf_release(&olddotgit);
761 strbuf_release(&gitdir);
762 strbuf_release(&realdotgit);
763 strbuf_release(&dotgit);
766 int should_prune_worktree(const char *id, struct strbuf *reason, char **wtpath, timestamp_t expire)
768 struct stat st;
769 char *path;
770 int fd;
771 size_t len;
772 ssize_t read_result;
774 *wtpath = NULL;
775 if (!is_directory(git_path("worktrees/%s", id))) {
776 strbuf_addstr(reason, _("not a valid directory"));
777 return 1;
779 if (file_exists(git_path("worktrees/%s/locked", id)))
780 return 0;
781 if (stat(git_path("worktrees/%s/gitdir", id), &st)) {
782 strbuf_addstr(reason, _("gitdir file does not exist"));
783 return 1;
785 fd = open(git_path("worktrees/%s/gitdir", id), O_RDONLY);
786 if (fd < 0) {
787 strbuf_addf(reason, _("unable to read gitdir file (%s)"),
788 strerror(errno));
789 return 1;
791 len = xsize_t(st.st_size);
792 path = xmallocz(len);
794 read_result = read_in_full(fd, path, len);
795 if (read_result < 0) {
796 strbuf_addf(reason, _("unable to read gitdir file (%s)"),
797 strerror(errno));
798 close(fd);
799 free(path);
800 return 1;
802 close(fd);
804 if (read_result != len) {
805 strbuf_addf(reason,
806 _("short read (expected %"PRIuMAX" bytes, read %"PRIuMAX")"),
807 (uintmax_t)len, (uintmax_t)read_result);
808 free(path);
809 return 1;
811 while (len && (path[len - 1] == '\n' || path[len - 1] == '\r'))
812 len--;
813 if (!len) {
814 strbuf_addstr(reason, _("invalid gitdir file"));
815 free(path);
816 return 1;
818 path[len] = '\0';
819 if (!file_exists(path)) {
820 if (stat(git_path("worktrees/%s/index", id), &st) ||
821 st.st_mtime <= expire) {
822 strbuf_addstr(reason, _("gitdir file points to non-existent location"));
823 free(path);
824 return 1;
825 } else {
826 *wtpath = path;
827 return 0;
830 *wtpath = path;
831 return 0;