Git development
 help / color / mirror / Atom feed
From: Phillip Wood <phillip.wood123@gmail.com>
To: Junio C Hamano <gitster@pobox.com>
Cc: git@vger.kernel.org, Patrick Steinhardt <ps@pks.im>,
	Eric Sunshine <sunshine@sunshineco.com>
Subject: Re: [PATCH v3 1/3] worktree: remove "the_repository" from is_current_worktree()
Date: Thu, 2 Apr 2026 16:10:24 +0100	[thread overview]
Message-ID: <eadbe64e-b43f-42a8-852d-1e0824f5a9be@gmail.com> (raw)
In-Reply-To: <xmqq1ph5kxpx.fsf@gitster.g>

On 27/03/2026 17:07, Junio C Hamano wrote:
> Phillip Wood <phillip.wood123@gmail.com> writes> 
>> On 26/03/2026 15:48, Junio C Hamano wrote:
> 
> I _think_ what I am frustrated about is the lack of description on
> "what it means to be the worktree among many that is pointed by via
> the .worktree member in the repository struct".  Does it correspond to
> the worktree being "the current worktree the codepath is working on?"

Yes

>>> The function's comment in <worktree.h> talks only at the
>>> implementation level "construct a worktree struct from repo->gitdir
>>> and repo->worktree" as if it is so obvious what the resulting
>>> worktree struct means at a higher layer's point of view, which does
>>> not help, either.
>>
>> That comes from me thinking of a struct repository as referring to a
>> specific worktree - would calling it
>> "get_worktree_from_repository_instance" be clearer?
> 
> It does not change the descriptive value of the name in any
> meaningful way, so let's not do that.  If the answer to my "what
> frustrates me" comment above is "yeah, we are getting the current
> worktree", then renaming the function to include "current" in its
> name would add descriptive value vastly, though.

That's a good idea, I'll send a patch to rename 
get_worktree_from_repository() to get_current_worktree()

>> I feel I'm struggling to explain this clearly - I find this whole
>> discussion gets confusing because we have "struct worktree" and also a
>> "worktree" member of "struct repository" which means a "struct
>> repository" instance is tied to a specific worktree within the
>> repository. If "struct repository" only had a "commondir" member and no
>> "gitdir" or "worktree" members and we instead used "sturct worktree" to
>> refer to a specific worktree within a repository with functions like
>>
>> 	worktree_get_oid(wt, "HEAD", &oid);
>>
>> instead of
>>
>> 	repo_get_oid(repo, "HEAD", &oid);
>>
>> it might be clearer but that would be a very big change.
> 
> In short, am I hearing the worktree subsystem is not conceptually
> clean and it would be a huge undertaking to clean it up?

Yes, we mostly use "struct repository" to operate on the current 
worktree but sometimes we need a "struct worktree" instead.

Thanks

Phillip


  reply	other threads:[~2026-04-02 15:10 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-03-13 14:19 [PATCH 0/3] worktree: stop using "the_repository" in is_current_worktree() Phillip Wood
2026-03-13 14:19 ` [PATCH 1/3] worktree: remove "the_repository" from is_current_worktree() Phillip Wood
2026-03-13 14:19 ` [PATCH 2/3] worktree add: stop reading ".git/HEAD" Phillip Wood
2026-03-13 21:41   ` Junio C Hamano
2026-03-13 14:19 ` [PATCH 3/3] worktree: reject NULL worktree in get_worktree_git_dir() Phillip Wood
2026-03-13 21:42   ` Junio C Hamano
2026-03-14 20:09     ` Phillip Wood
2026-03-15 16:18 ` [PATCH v2 0/3] worktree: stop using "the_repository" in is_current_worktree() Phillip Wood
2026-03-15 16:18   ` [PATCH v2 1/3] worktree: remove "the_repository" from is_current_worktree() Phillip Wood
2026-03-16  7:38     ` Patrick Steinhardt
2026-03-16 16:22       ` Phillip Wood
2026-03-17 10:24         ` Phillip Wood
2026-03-23  9:41           ` Shreyansh Paliwal
2026-03-23 14:37             ` Phillip Wood
2026-03-23 17:05               ` Shreyansh Paliwal
2026-03-15 16:18   ` [PATCH v2 2/3] worktree add: stop reading ".git/HEAD" Phillip Wood
2026-03-16  7:39     ` Patrick Steinhardt
2026-03-15 16:18   ` [PATCH v2 3/3] worktree: reject NULL worktree in get_worktree_git_dir() Phillip Wood
2026-03-15 21:17   ` [PATCH v2 0/3] worktree: stop using "the_repository" in is_current_worktree() Junio C Hamano
2026-03-26 14:16 ` [PATCH v3 " Phillip Wood
2026-03-26 14:16   ` [PATCH v3 1/3] worktree: remove "the_repository" from is_current_worktree() Phillip Wood
2026-03-26 15:48     ` Junio C Hamano
2026-03-27 16:40       ` Phillip Wood
2026-03-27 17:07         ` Junio C Hamano
2026-04-02 15:10           ` Phillip Wood [this message]
2026-03-26 14:16   ` [PATCH v3 2/3] worktree add: stop reading ".git/HEAD" Phillip Wood
2026-03-26 14:16   ` [PATCH v3 3/3] worktree: reject NULL worktree in get_worktree_git_dir() Phillip Wood

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=eadbe64e-b43f-42a8-852d-1e0824f5a9be@gmail.com \
    --to=phillip.wood123@gmail.com \
    --cc=git@vger.kernel.org \
    --cc=gitster@pobox.com \
    --cc=phillip.wood@dunelm.org.uk \
    --cc=ps@pks.im \
    --cc=sunshine@sunshineco.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox