* [PATCH v2] worktree repair: detect relative path in .git file correctly
2026-08-15 13:11 [PATCH] worktree repair: detect relative path in .git file correctly Yoichi NAKAYAMA via GitGitGadget
2026-08-17 17:21 ` Junio C Hamano
@ 2026-08-20 15:46 ` Yoichi NAKAYAMA via GitGitGadget
1 sibling, 0 replies; 4+ messages in thread
From: Yoichi NAKAYAMA via GitGitGadget @ 2026-08-20 15:46 UTC (permalink / raw)
To: git; +Cc: Yoichi Nakayama, Yoichi NAKAYAMA, Yoichi NAKAYAMA
From: Yoichi NAKAYAMA <yoichi.nakayama@gmail.com>
Given a state where the cross references between the worktree and the
repository (specifically worktree/id/gitdir in the main repository and
the .git file in the worktree) are recorded using absolute paths,
setting 'worktree.useRelativePaths=true' and running 'git worktree
repair' within the main worktree converts them to relative paths.
On the other hand, given a state where the cross references are
recorded using relative paths, one would expect (by symmetry) that
setting 'worktree.useRelativePath=false' and running 'git worktree
repair' would convert them to absolute paths. However, they remain as
relative paths.
This is because we wrongly use read_gitfile_gently() which always
returns an absolute path. To fix this, introduce read_gitfile_raw()
that is almost same as read_gitfile_gently(), but it skips existence
check of the referenced repository and returns the unmodified path
read from .git file.
Signed-off-by: Yoichi NAKAYAMA <yoichi.nakayama@gmail.com>
---
worktree repair: detect relative path in .git file correctly
Published-As: https://github.com/gitgitgadget/git/releases/tag/pr-2205%2Fyoichi%2Fworktree-repair-relative-path-handling-v2
Fetch-It-Via: git fetch https://github.com/gitgitgadget/git pr-2205/yoichi/worktree-repair-relative-path-handling-v2
Pull-Request: https://github.com/gitgitgadget/git/pull/2205
Range-diff vs v1:
1: c97b948565 ! 1: 5bcf19ef50 worktree repair: detect relative path in .git file correctly
@@ Metadata
## Commit message ##
worktree repair: detect relative path in .git file correctly
- Since read_gitfile_gently() always returns an absolute path, the
- conversion from a relative path to an absolute path was not
- functioning and dead code existed.
+ Given a state where the cross references between the worktree and the
+ repository (specifically worktree/id/gitdir in the main repository and
+ the .git file in the worktree) are recorded using absolute paths,
+ setting 'worktree.useRelativePaths=true' and running 'git worktree
+ repair' within the main worktree converts them to relative paths.
- Signed-off-by: Yoichi NAKAYAMA <yoichi.nakayama@gmail.com>
+ On the other hand, given a state where the cross references are
+ recorded using relative paths, one would expect (by symmetry) that
+ setting 'worktree.useRelativePath=false' and running 'git worktree
+ repair' would convert them to absolute paths. However, they remain as
+ relative paths.
- ## builtin/init-db.c ##
-@@ builtin/init-db.c: int cmd_init_db(int argc,
- const char *p;
- struct strbuf sb = STRBUF_INIT;
-
-- p = read_gitfile_gently(git_dir, &err);
-+ p = read_gitfile_gently(git_dir, NULL, &err);
- if (p && get_common_dir(&sb, p)) {
- struct strbuf mainwt = STRBUF_INIT;
-
+ This is because we wrongly use read_gitfile_gently() which always
+ returns an absolute path. To fix this, introduce read_gitfile_raw()
+ that is almost same as read_gitfile_gently(), but it skips existence
+ check of the referenced repository and returns the unmodified path
+ read from .git file.
+
+ Signed-off-by: Yoichi NAKAYAMA <yoichi.nakayama@gmail.com>
## setup.c ##
-@@ setup.c: int is_nonbare_repository_dir(struct strbuf *path)
- assert(orig_path_len != 0);
- strbuf_complete(path, '/');
- strbuf_addstr(path, ".git");
-- if (read_gitfile_gently(path->buf, &gitfile_error) || is_git_directory(path->buf))
-+ if (read_gitfile_gently(path->buf, NULL, &gitfile_error) || is_git_directory(path->buf))
- ret = 1;
- if (gitfile_error == READ_GITFILE_ERR_OPEN_FAILED ||
- gitfile_error == READ_GITFILE_ERR_READ_FAILED)
@@ setup.c: void read_gitfile_error_die(int error_code, const char *path)
- * return path to git directory if found. The return value comes from
- * a shared buffer.
- *
-+ * On success, if absolute is not NULL, it will be set to whether the
-+ * path in .git file is an absolute path.
-+ *
- * On failure, if return_error_code is not NULL, return_error_code
- * will be set to an error code and NULL will be returned. If
- * return_error_code is NULL the function will die instead (for most
- * cases).
*/
--const char *read_gitfile_gently(const char *path, int *return_error_code)
-+const char *read_gitfile_gently(const char *path, bool *absolute, int *return_error_code)
+ const char *read_gitfile_gently(const char *path, int *return_error_code)
{
- const int max_file_size = 1 << 20; /* 1MB */
+- const int max_file_size = 1 << 20; /* 1MB */
int error_code = 0;
+ char *buf = NULL;
+- char *dir = NULL;
+ const char *slash;
++ static struct strbuf realpath = STRBUF_INIT;
++
++ buf = xstrdup_or_null(read_gitfile_raw(path, &error_code));
++ if (error_code)
++ goto cleanup_return;
++
++ if (!is_absolute_path(buf) && (slash = strrchr(path, '/'))) {
++ size_t pathlen = slash+1 - path;
++ char *dir = xstrfmt("%.*s%.*s", (int)pathlen, path,
++ (int)strlen(buf), buf);
++ free(buf);
++ buf = dir;
++ }
++ if (!is_git_directory(buf)) {
++ error_code = READ_GITFILE_ERR_NOT_A_REPO;
++ goto cleanup_return;
++ }
++
++ strbuf_realpath(&realpath, buf, 1);
++
++cleanup_return:
++ if (return_error_code)
++ *return_error_code = error_code;
++ else if (error_code)
++ read_gitfile_error_die(error_code, path);
++
++ free(buf);
++ return error_code ? NULL : realpath.buf;
++}
++
++const char *read_gitfile_raw(const char *path, int *return_error_code)
++{
++ const int max_file_size = 1 << 20; /* 1MB */
++ int error_code = 0;
++ char *buf = NULL;
+ struct stat st;
+ int fd;
+ ssize_t len;
+- static struct strbuf realpath = STRBUF_INIT;
++ static struct strbuf contents = STRBUF_INIT;
+
+ if (stat(path, &st)) {
+ if (errno == ENOENT || errno == ENOTDIR)
@@ setup.c: const char *read_gitfile_gently(const char *path, int *return_error_code)
+ error_code = READ_GITFILE_ERR_NO_PATH;
+ goto cleanup_return;
}
- buf[len] = '\0';
- dir = buf + 8;
-+ if (absolute)
-+ *absolute = is_absolute_path(dir);
+- buf[len] = '\0';
+- dir = buf + 8;
+-
+- if (!is_absolute_path(dir) && (slash = strrchr(path, '/'))) {
+- size_t pathlen = slash+1 - path;
+- dir = xstrfmt("%.*s%.*s", (int)pathlen, path,
+- (int)(len - 8), buf + 8);
+- free(buf);
+- buf = dir;
+- }
+- if (!is_git_directory(dir)) {
+- error_code = READ_GITFILE_ERR_NOT_A_REPO;
+- goto cleanup_return;
+- }
+-
+- strbuf_realpath(&realpath, dir, 1);
+- path = realpath.buf;
++ strbuf_reset(&contents);
++ strbuf_add(&contents, buf+8, len-8);
- if (!is_absolute_path(dir) && (slash = strrchr(path, '/'))) {
- size_t pathlen = slash+1 - path;
-@@ setup.c: static enum discovery_result repo_discovery_find_dir(struct strbuf *dir,
- if (offset > min_offset)
- strbuf_addch(dir, '/');
- strbuf_addstr(dir, DEFAULT_GIT_DIR_ENVIRONMENT);
-- gitdirenv = read_gitfile_gently(dir->buf, &error_code);
-+ gitdirenv = read_gitfile_gently(dir->buf, NULL, &error_code);
- if (!gitdirenv) {
- switch (error_code) {
- case READ_GITFILE_ERR_MISSING:
-@@ setup.c: const char *resolve_gitdir_gently(const char *suspect, int *return_error_code)
- {
- if (is_git_directory(suspect))
- return suspect;
-- return read_gitfile_gently(suspect, return_error_code);
-+ return read_gitfile_gently(suspect, NULL, return_error_code);
+ cleanup_return:
+- if (return_error_code)
+- *return_error_code = error_code;
+- else if (error_code)
+- read_gitfile_error_die(error_code, path);
+-
++ *return_error_code = error_code;
+ free(buf);
+- return error_code ? NULL : path;
++ return error_code ? NULL : contents.buf;
}
- /* if any standard file descriptor is missing open it to /dev/null */
+ static void apply_gitdir_and_environment(struct repository *repo, const char *path)
## setup.h ##
@@ setup.h: int is_nonbare_repository_dir(struct strbuf *path);
- #define READ_GITFILE_ERR_MISSING 9
#define READ_GITFILE_ERR_IS_A_DIR 10
void read_gitfile_error_die(int error_code, const char *path);
--const char *read_gitfile_gently(const char *path, int *return_error_code);
--#define read_gitfile(path) read_gitfile_gently((path), NULL)
-+const char *read_gitfile_gently(const char *path, bool *absolute, int *return_error_code);
-+#define read_gitfile(path) read_gitfile_gently((path), NULL, NULL)
+ const char *read_gitfile_gently(const char *path, int *return_error_code);
++const char *read_gitfile_raw(const char *path, int *return_error_code);
+ #define read_gitfile(path) read_gitfile_gently((path), NULL)
const char *resolve_gitdir_gently(const char *suspect, int *return_error_code);
#define resolve_gitdir(path) resolve_gitdir_gently((path), NULL)
-
## t/t2406-worktree-repair.sh ##
@@ t/t2406-worktree-repair.sh: test_expect_success 'repair worktree with relative path with missing gitfile' '
@@ t/t2406-worktree-repair.sh: test_expect_success 'repair worktree with relative p
-test_expect_success 'repair absolute worktree to use relative paths' '
- test_when_finished "rm -rf main side sidemoved" &&
-+test_expect_success 'repair absolute to relative in side worktree' '
++test_expect_success 'repair absolute to relative from side worktree' '
+ test_when_finished "rm -rf main side" &&
test_create_repo main &&
test_commit -C main init &&
@@ t/t2406-worktree-repair.sh: test_expect_success 'repair worktree with relative p
echo "gitdir: ../main/.git/worktrees/side" >expect-gitfile &&
- mv side sidemoved &&
- git -C main worktree repair --relative-paths ../sidemoved &&
-+ git -C side worktree repair --relative-paths 2>main/err &&
++ git -C main worktree repair --relative-paths ../side 2>main/err &&
+ test_grep "gitdir absolute/relative path mismatch" main/err &&
test_cmp expect-gitdir main/.git/worktrees/side/gitdir &&
- test_cmp expect-gitfile sidemoved/.git
@@ t/t2406-worktree-repair.sh: test_expect_success 'repair worktree with relative p
-test_expect_success 'repair relative worktree to use absolute paths' '
- test_when_finished "rm -rf main side sidemoved" &&
-+test_expect_success 'repair relative to absolute in side worktree' '
++test_expect_success 'repair relative to absolute from side worktree' '
+ test_when_finished "rm -rf main side" &&
test_create_repo main &&
test_commit -C main init &&
@@ t/t2406-worktree-repair.sh: test_expect_success 'repair worktree with relative p
echo "gitdir: $(pwd)/main/.git/worktrees/side" >expect-gitfile &&
- mv side sidemoved &&
- git -C main worktree repair ../sidemoved &&
-+ git -C side worktree repair 2>main/err &&
++ git -C main worktree repair ../side 2>main/err &&
+ test_grep "gitdir absolute/relative path mismatch" main/err &&
test_cmp expect-gitdir main/.git/worktrees/side/gitdir &&
- test_cmp expect-gitfile sidemoved/.git
+ test_cmp expect-gitfile side/.git
+'
+
-+test_expect_success 'repair absolute to relative in main worktree' '
++test_expect_success 'repair absolute to relative from main worktree' '
+ test_when_finished "rm -rf main side" &&
+ test_create_repo main &&
+ git -C main config worktree.useRelativePaths false &&
@@ t/t2406-worktree-repair.sh: test_expect_success 'repair worktree with relative p
+ test_cmp expect-gitfile side/.git
+'
+
-+test_expect_success 'repair relative to absolute in main worktree' '
++test_expect_success 'repair relative to absolute from main worktree' '
+ test_when_finished "rm -rf main side" &&
+ test_create_repo main &&
+ git -C main config worktree.useRelativePaths true &&
@@ t/t2406-worktree-repair.sh: test_expect_success 'repair worktree with relative p
test_done
## worktree.c ##
-@@ worktree.c: int validate_worktree(const struct worktree *wt, struct strbuf *errmsg,
- goto done;
- }
-
-- path = xstrdup_or_null(read_gitfile_gently(wt_path.buf, &err));
-+ path = xstrdup_or_null(read_gitfile_gently(wt_path.buf, NULL, &err));
- if (!path) {
- strbuf_addf_gently(errmsg, _("'%s' is not a .git file, error code %d"),
- wt_path.buf, err);
-@@ worktree.c: static void repair_gitfile(struct worktree *wt,
- struct strbuf repo = STRBUF_INIT;
- struct strbuf backlink = STRBUF_INIT;
- char *dotgit_contents = NULL;
-+ bool absolute;
- const char *repair = NULL;
- char *path = NULL;
- int err;
@@ worktree.c: static void repair_gitfile(struct worktree *wt,
strbuf_realpath(&repo, path, 1);
strbuf_addf(&dotgit, "%s/.git", wt->path);
strbuf_addf(&gitdir, "%s/gitdir", repo.buf);
- dotgit_contents = xstrdup_or_null(read_gitfile_gently(dotgit.buf, &err));
-+ dotgit_contents = xstrdup_or_null(read_gitfile_gently(dotgit.buf, &absolute, &err));
-
-- if (dotgit_contents) {
-- if (is_absolute_path(dotgit_contents)) {
-- strbuf_addstr(&backlink, dotgit_contents);
-- } else {
-- strbuf_addf(&backlink, "%s/%s", wt->path, dotgit_contents);
-- strbuf_realpath_forgiving(&backlink, backlink.buf, 0);
-- }
-- }
-+ if (dotgit_contents)
-+ strbuf_addstr(&backlink, dotgit_contents);
++ dotgit_contents = xstrdup_or_null(read_gitfile_raw(dotgit.buf, &err));
+ if (dotgit_contents) {
+ if (is_absolute_path(dotgit_contents)) {
+@@ worktree.c: static void repair_gitfile(struct worktree *wt,
if (err == READ_GITFILE_ERR_NOT_A_FILE ||
err == READ_GITFILE_ERR_IS_A_DIR)
-@@ worktree.c: static void repair_gitfile(struct worktree *wt,
+ fn(1, wt->path, _(".git is not a file"), cb_data);
+- else if (err)
++ else if (err || !is_git_directory(backlink.buf))
repair = _(".git file broken");
else if (fspathcmp(backlink.buf, repo.buf))
repair = _(".git file incorrect");
-- else if (use_relative_paths == is_absolute_path(dotgit_contents))
-+ else if (use_relative_paths == absolute)
- repair = _(".git file absolute/relative path mismatch");
-
- if (repair) {
@@ worktree.c: void repair_worktree_at_path(struct repository *repo,
-
- infer_backlink(repo, dotgit.buf, &inferred_backlink);
strbuf_realpath_forgiving(&inferred_backlink, inferred_backlink.buf, 0);
-- dotgit_contents = xstrdup_or_null(read_gitfile_gently(dotgit.buf, &err));
-+ dotgit_contents = xstrdup_or_null(read_gitfile_gently(dotgit.buf, NULL, &err));
+ dotgit_contents = xstrdup_or_null(read_gitfile_gently(dotgit.buf, &err));
if (dotgit_contents) {
- if (is_absolute_path(dotgit_contents)) {
- strbuf_addstr(&backlink, dotgit_contents);
setup.c | 66 +++++++++++++++++++++++---------------
setup.h | 1 +
t/t2406-worktree-repair.sh | 54 ++++++++++++++++++++++++-------
worktree.c | 13 ++------
4 files changed, 86 insertions(+), 48 deletions(-)
diff --git a/setup.c b/setup.c
index 95909e9603..73111e08af 100644
--- a/setup.c
+++ b/setup.c
@@ -963,15 +963,48 @@ void read_gitfile_error_die(int error_code, const char *path)
*/
const char *read_gitfile_gently(const char *path, int *return_error_code)
{
- const int max_file_size = 1 << 20; /* 1MB */
int error_code = 0;
char *buf = NULL;
- char *dir = NULL;
const char *slash;
+ static struct strbuf realpath = STRBUF_INIT;
+
+ buf = xstrdup_or_null(read_gitfile_raw(path, &error_code));
+ if (error_code)
+ goto cleanup_return;
+
+ if (!is_absolute_path(buf) && (slash = strrchr(path, '/'))) {
+ size_t pathlen = slash+1 - path;
+ char *dir = xstrfmt("%.*s%.*s", (int)pathlen, path,
+ (int)strlen(buf), buf);
+ free(buf);
+ buf = dir;
+ }
+ if (!is_git_directory(buf)) {
+ error_code = READ_GITFILE_ERR_NOT_A_REPO;
+ goto cleanup_return;
+ }
+
+ strbuf_realpath(&realpath, buf, 1);
+
+cleanup_return:
+ if (return_error_code)
+ *return_error_code = error_code;
+ else if (error_code)
+ read_gitfile_error_die(error_code, path);
+
+ free(buf);
+ return error_code ? NULL : realpath.buf;
+}
+
+const char *read_gitfile_raw(const char *path, int *return_error_code)
+{
+ const int max_file_size = 1 << 20; /* 1MB */
+ int error_code = 0;
+ char *buf = NULL;
struct stat st;
int fd;
ssize_t len;
- static struct strbuf realpath = STRBUF_INIT;
+ static struct strbuf contents = STRBUF_INIT;
if (stat(path, &st)) {
if (errno == ENOENT || errno == ENOTDIR)
@@ -1014,32 +1047,13 @@ const char *read_gitfile_gently(const char *path, int *return_error_code)
error_code = READ_GITFILE_ERR_NO_PATH;
goto cleanup_return;
}
- buf[len] = '\0';
- dir = buf + 8;
-
- if (!is_absolute_path(dir) && (slash = strrchr(path, '/'))) {
- size_t pathlen = slash+1 - path;
- dir = xstrfmt("%.*s%.*s", (int)pathlen, path,
- (int)(len - 8), buf + 8);
- free(buf);
- buf = dir;
- }
- if (!is_git_directory(dir)) {
- error_code = READ_GITFILE_ERR_NOT_A_REPO;
- goto cleanup_return;
- }
-
- strbuf_realpath(&realpath, dir, 1);
- path = realpath.buf;
+ strbuf_reset(&contents);
+ strbuf_add(&contents, buf+8, len-8);
cleanup_return:
- if (return_error_code)
- *return_error_code = error_code;
- else if (error_code)
- read_gitfile_error_die(error_code, path);
-
+ *return_error_code = error_code;
free(buf);
- return error_code ? NULL : path;
+ return error_code ? NULL : contents.buf;
}
static void apply_gitdir_and_environment(struct repository *repo, const char *path)
diff --git a/setup.h b/setup.h
index 654f10e059..442acd8954 100644
--- a/setup.h
+++ b/setup.h
@@ -40,6 +40,7 @@ int is_nonbare_repository_dir(struct strbuf *path);
#define READ_GITFILE_ERR_IS_A_DIR 10
void read_gitfile_error_die(int error_code, const char *path);
const char *read_gitfile_gently(const char *path, int *return_error_code);
+const char *read_gitfile_raw(const char *path, int *return_error_code);
#define read_gitfile(path) read_gitfile_gently((path), NULL)
const char *resolve_gitdir_gently(const char *suspect, int *return_error_code);
#define resolve_gitdir(path) resolve_gitdir_gently((path), NULL)
diff --git a/t/t2406-worktree-repair.sh b/t/t2406-worktree-repair.sh
index f5f19b3169..d4e53d492b 100755
--- a/t/t2406-worktree-repair.sh
+++ b/t/t2406-worktree-repair.sh
@@ -228,30 +228,60 @@ test_expect_success 'repair worktree with relative path with missing gitfile' '
test_cmp expect wt/.git
'
-test_expect_success 'repair absolute worktree to use relative paths' '
- test_when_finished "rm -rf main side sidemoved" &&
+test_expect_success 'repair absolute to relative from side worktree' '
+ test_when_finished "rm -rf main side" &&
test_create_repo main &&
test_commit -C main init &&
git -C main worktree add --detach ../side &&
- echo "../../../../sidemoved/.git" >expect-gitdir &&
+ echo "../../../../side/.git" >expect-gitdir &&
echo "gitdir: ../main/.git/worktrees/side" >expect-gitfile &&
- mv side sidemoved &&
- git -C main worktree repair --relative-paths ../sidemoved &&
+ git -C main worktree repair --relative-paths ../side 2>main/err &&
+ test_grep "gitdir absolute/relative path mismatch" main/err &&
test_cmp expect-gitdir main/.git/worktrees/side/gitdir &&
- test_cmp expect-gitfile sidemoved/.git
+ test_cmp expect-gitfile side/.git
'
-test_expect_success 'repair relative worktree to use absolute paths' '
- test_when_finished "rm -rf main side sidemoved" &&
+test_expect_success 'repair relative to absolute from side worktree' '
+ test_when_finished "rm -rf main side" &&
test_create_repo main &&
test_commit -C main init &&
git -C main worktree add --relative-paths --detach ../side &&
- echo "$(pwd)/sidemoved/.git" >expect-gitdir &&
+ echo "$(pwd)/side/.git" >expect-gitdir &&
echo "gitdir: $(pwd)/main/.git/worktrees/side" >expect-gitfile &&
- mv side sidemoved &&
- git -C main worktree repair ../sidemoved &&
+ git -C main worktree repair ../side 2>main/err &&
+ test_grep "gitdir absolute/relative path mismatch" main/err &&
test_cmp expect-gitdir main/.git/worktrees/side/gitdir &&
- test_cmp expect-gitfile sidemoved/.git
+ test_cmp expect-gitfile side/.git
+'
+
+test_expect_success 'repair absolute to relative from main worktree' '
+ test_when_finished "rm -rf main side" &&
+ test_create_repo main &&
+ git -C main config worktree.useRelativePaths false &&
+ test_commit -C main init &&
+ git -C main worktree add --detach ../side &&
+ echo "../../../../side/.git" >expect-gitdir &&
+ echo "gitdir: ../main/.git/worktrees/side" >expect-gitfile &&
+ git -C main config worktree.useRelativePaths true &&
+ git -C main worktree repair 2>main/err &&
+ test_grep ".git file absolute/relative path mismatch" main/err &&
+ test_cmp expect-gitdir main/.git/worktrees/side/gitdir &&
+ test_cmp expect-gitfile side/.git
+'
+
+test_expect_success 'repair relative to absolute from main worktree' '
+ test_when_finished "rm -rf main side" &&
+ test_create_repo main &&
+ git -C main config worktree.useRelativePaths true &&
+ test_commit -C main init &&
+ git -C main worktree add --detach ../side &&
+ echo "$(pwd)/side/.git" >expect-gitdir &&
+ echo "gitdir: $(pwd)/main/.git/worktrees/side" >expect-gitfile &&
+ git -C main config worktree.useRelativePaths false &&
+ git -C main worktree repair 2>main/err &&
+ test_grep ".git file absolute/relative path mismatch" main/err &&
+ test_cmp expect-gitdir main/.git/worktrees/side/gitdir &&
+ test_cmp expect-gitfile side/.git
'
test_done
diff --git a/worktree.c b/worktree.c
index cbf95328a3..48e77636cf 100644
--- a/worktree.c
+++ b/worktree.c
@@ -667,7 +667,7 @@ static void repair_gitfile(struct worktree *wt,
strbuf_realpath(&repo, path, 1);
strbuf_addf(&dotgit, "%s/.git", wt->path);
strbuf_addf(&gitdir, "%s/gitdir", repo.buf);
- dotgit_contents = xstrdup_or_null(read_gitfile_gently(dotgit.buf, &err));
+ dotgit_contents = xstrdup_or_null(read_gitfile_raw(dotgit.buf, &err));
if (dotgit_contents) {
if (is_absolute_path(dotgit_contents)) {
@@ -681,7 +681,7 @@ static void repair_gitfile(struct worktree *wt,
if (err == READ_GITFILE_ERR_NOT_A_FILE ||
err == READ_GITFILE_ERR_IS_A_DIR)
fn(1, wt->path, _(".git is not a file"), cb_data);
- else if (err)
+ else if (err || !is_git_directory(backlink.buf))
repair = _(".git file broken");
else if (fspathcmp(backlink.buf, repo.buf))
repair = _(".git file incorrect");
@@ -857,14 +857,7 @@ void repair_worktree_at_path(struct repository *repo,
strbuf_realpath_forgiving(&inferred_backlink, inferred_backlink.buf, 0);
dotgit_contents = xstrdup_or_null(read_gitfile_gently(dotgit.buf, &err));
if (dotgit_contents) {
- if (is_absolute_path(dotgit_contents)) {
- strbuf_addstr(&backlink, dotgit_contents);
- } else {
- strbuf_addbuf(&backlink, &dotgit);
- strbuf_strip_suffix(&backlink, ".git");
- strbuf_addstr(&backlink, dotgit_contents);
- strbuf_realpath_forgiving(&backlink, backlink.buf, 0);
- }
+ strbuf_addstr(&backlink, dotgit_contents);
} else if (err == READ_GITFILE_ERR_NOT_A_FILE ||
err == READ_GITFILE_ERR_IS_A_DIR) {
fn(1, dotgit.buf, _("unable to locate repository; .git is not a file"), cb_data);
base-commit: dea0ea3582e6980ddbc1173cc8e3e9f9db91cde0
--
gitgitgadget
^ permalink raw reply related [flat|nested] 4+ messages in thread