Re: [PATCH] worktree: repair copied repository and linked worktrees

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Mon, Sep 23, 2024 at 3:55 AM Eric Sunshine <ericsunshine@xxxxxxxxxxx> wrote:
> [...]
> Fix this problem by also checking if a plausible .git/worktrees/<id>
> exists in the *current* repository -- not just in the repository pointed
> at by the worktree's .git file -- and comparing whether they are the
> same. If not, then it is likely because the repository / main-worktree
> and linked worktrees were copied, so prefer the discovered plausible
> pointer rather than the one from the existing .git file.
>
> Signed-off-by: Eric Sunshine <sunshine@xxxxxxxxxxxxxx>
> ---
> diff --git a/worktree.c b/worktree.c
> @@ -698,12 +699,24 @@ void repair_worktree_at_path(const char *path,
> +       inferred_backlink = infer_backlink(realdotgit.buf);
>         backlink = xstrdup_or_null(read_gitfile_gently(realdotgit.buf, &err));
>         if (err == READ_GITFILE_ERR_NOT_A_FILE) {
>                 fn(1, realdotgit.buf, _("unable to locate repository; .git is not a file"), cb_data);
>                 goto done;
>         } else if (err == READ_GITFILE_ERR_NOT_A_REPO) {
> -               if (!(backlink = infer_backlink(realdotgit.buf))) {
> +               if (inferred_backlink) {
> +                       /*
> +                        * Worktree's .git file does not point at a repository
> +                        * but we found a .git/worktrees/<id> in this
> +                        * repository with the same <id> as recorded in the
> +                        * worktree's .git file so make the worktree point at
> +                        * the discovered .git/worktrees/<id>. (Note: backlink
> +                        * is already NULL, so no need to free it first.)
> +                        */
> +                       backlink = inferred_backlink;
> +                       inferred_backlink = NULL;
> +               } else {
>                         fn(1, realdotgit.buf, _("unable to locate repository; .git file does not reference a repository"), cb_data);
>                         goto done;
>                 }

In case it's not obvious at first glance, there is no change of
behavior here. This changes in this hunk:

(1) factor out the call to infer_backlink() since the result is now
consulted in multiple code paths and the code needs to be careful to
ensure that all allocated strings get freed (at the end of the
function)

(2) add a comment explaining the *existing* behavior

The later hunk in this patch contains the actual behavior change.

> @@ -712,6 +725,30 @@ void repair_worktree_at_path(const char *path,
> +       /*
> +        * If we got this far, either the worktree's .git file pointed at a
> +        * valid repository (i.e. read_gitfile_gently() returned success) or
> +        * the .git file did not point at a repository but we were able to
> +        * infer a suitable new value for the .git file by locating a
> +        * .git/worktrees/<id> in *this* repository corresponding to the <id>
> +        * recorded in the worktree's .git file.
> +        *
> +        * However, if, at this point, inferred_backlink is non-NULL (i.e. we
> +        * found a suitable .git/worktrees/<id> in *this* repository) *and* the
> +        * worktree's .git file points at a valid repository *and* those two
> +        * paths differ, then that indicates that the user probably *copied*
> +        * the main and linked worktrees to a new location as a unit rather
> +        * than *moving* them. Thus, the copied worktree's .git file actually
> +        * points at the .git/worktrees/<id> in the *original* repository, not
> +        * in the "copy" repository. In this case, point the "copy" worktree's
> +        * .git file at the "copy" repository.
> +        */
> +       if (inferred_backlink && fspathcmp(backlink, inferred_backlink)) {
> +               free(backlink);
> +               backlink = inferred_backlink;
> +               inferred_backlink = NULL;
> +       }
> +





[Index of Archives]     [Linux Kernel Development]     [Gcc Help]     [IETF Annouce]     [DCCP]     [Netdev]     [Networking]     [Security]     [V4L]     [Bugtraq]     [Yosemite]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Linux SCSI]     [Fedora Users]

  Powered by Linux