* [PATCH] worktree: clarify --expire applies to missing worktrees
@ 2025-12-19 15:00 Sam Bostock via GitGitGadget
2025-12-19 15:11 ` Eric Sunshine
2025-12-19 18:16 ` [PATCH v2 0/2] " Sam Bostock via GitGitGadget
0 siblings, 2 replies; 11+ messages in thread
From: Sam Bostock via GitGitGadget @ 2025-12-19 15:00 UTC (permalink / raw)
To: git; +Cc: Sam Bostock, Sam Bostock
From: Sam Bostock <sam.bostock@shopify.com>
The `--expire` option for `git worktree list` and `git worktree prune`
only affects worktrees whose working directory path no longer exists.
The help text did not make this clear, and the documentation
inconsistently used "unused" for prune but "missing" for list.
This updates the help text and documentation to consistently describe
these as "missing worktrees".
Signed-off-by: Sam Bostock <sam@sambostock.ca>
---
worktree: clarify --expire applies to missing worktrees
Published-As: https://github.com/gitgitgadget/git/releases/tag/pr-git-2135%2Fsambostock%2Fexpire-missing-worktrees-v1
Fetch-It-Via: git fetch https://github.com/gitgitgadget/git pr-git-2135/sambostock/expire-missing-worktrees-v1
Pull-Request: https://github.com/git/git/pull/2135
Documentation/git-worktree.adoc | 2 +-
builtin/worktree.c | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/Documentation/git-worktree.adoc b/Documentation/git-worktree.adoc
index f272f79783..402d363064 100644
--- a/Documentation/git-worktree.adoc
+++ b/Documentation/git-worktree.adoc
@@ -271,7 +271,7 @@ mismatch, even if the links are correct.
With `list`, output additional information about worktrees (see below).
`--expire <time>`::
- With `prune`, only expire unused worktrees older than _<time>_.
+ With `prune`, only expire missing worktrees older than _<time>_.
+
With `list`, annotate missing worktrees as prunable if they are older than
_<time>_.
diff --git a/builtin/worktree.c b/builtin/worktree.c
index fbdaf2eb2e..82fcbfeccf 100644
--- a/builtin/worktree.c
+++ b/builtin/worktree.c
@@ -252,7 +252,7 @@ static int prune(int ac, const char **av, const char *prefix,
OPT__DRY_RUN(&show_only, N_("do not remove, show only")),
OPT__VERBOSE(&verbose, N_("report pruned working trees")),
OPT_EXPIRY_DATE(0, "expire", &expire,
- N_("expire working trees older than <time>")),
+ N_("expire missing working trees older than <time>")),
OPT_END()
};
@@ -1070,7 +1070,7 @@ static int list(int ac, const char **av, const char *prefix,
OPT_BOOL(0, "porcelain", &porcelain, N_("machine-readable output")),
OPT__VERBOSE(&verbose, N_("show extended annotations and reasons, if available")),
OPT_EXPIRY_DATE(0, "expire", &expire,
- N_("add 'prunable' annotation to worktrees older than <time>")),
+ N_("add 'prunable' annotation to missing worktrees older than <time>")),
OPT_SET_INT('z', NULL, &line_terminator,
N_("terminate records with a NUL character"), '\0'),
OPT_END()
base-commit: c4a0c8845e2426375ad257b6c221a3a7d92ecfda
--
gitgitgadget
^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [PATCH] worktree: clarify --expire applies to missing worktrees
2025-12-19 15:00 [PATCH] worktree: clarify --expire applies to missing worktrees Sam Bostock via GitGitGadget
@ 2025-12-19 15:11 ` Eric Sunshine
2025-12-20 5:44 ` Junio C Hamano
2025-12-19 18:16 ` [PATCH v2 0/2] " Sam Bostock via GitGitGadget
1 sibling, 1 reply; 11+ messages in thread
From: Eric Sunshine @ 2025-12-19 15:11 UTC (permalink / raw)
To: Sam Bostock via GitGitGadget; +Cc: git, Sam Bostock
On Fri, Dec 19, 2025 at 10:01 AM Sam Bostock via GitGitGadget
<gitgitgadget@gmail.com> wrote:
> The `--expire` option for `git worktree list` and `git worktree prune`
> only affects worktrees whose working directory path no longer exists.
> The help text did not make this clear, and the documentation
> inconsistently used "unused" for prune but "missing" for list.
>
> This updates the help text and documentation to consistently describe
> these as "missing worktrees".
>
> Signed-off-by: Sam Bostock <sam@sambostock.ca>
> ---
This change makes sense to me; it certainly helps clarify the meaning.
One or two comments (below)...
> diff --git a/Documentation/git-worktree.adoc b/Documentation/git-worktree.adoc
> @@ -271,7 +271,7 @@ mismatch, even if the links are correct.
> `--expire <time>`::
> - With `prune`, only expire unused worktrees older than _<time>_.
> + With `prune`, only expire missing worktrees older than _<time>_.
Rather than saying that this "expires", I wonder if it would be even
clearer to say that it prunes or removes information about missing
worktrees. Something like:
With `prune`, only prune missing worktrees if older than _<time>_.
> diff --git a/builtin/worktree.c b/builtin/worktree.c
> @@ -252,7 +252,7 @@ static int prune(int ac, const char **av, const char *prefix,
> OPT_EXPIRY_DATE(0, "expire", &expire,
> - N_("expire working trees older than <time>")),
> + N_("expire missing working trees older than <time>")),
Same comment:
N_("prune missing working trees older than <time>")),
> @@ -1070,7 +1070,7 @@ static int list(int ac, const char **av, const char *prefix,
> OPT_EXPIRY_DATE(0, "expire", &expire,
> - N_("add 'prunable' annotation to worktrees older than <time>")),
> + N_("add 'prunable' annotation to missing worktrees older than <time>")),
This one is fine as-is (with your change applied).
^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH v2 0/2] worktree: clarify --expire applies to missing worktrees
2025-12-19 15:00 [PATCH] worktree: clarify --expire applies to missing worktrees Sam Bostock via GitGitGadget
2025-12-19 15:11 ` Eric Sunshine
@ 2025-12-19 18:16 ` Sam Bostock via GitGitGadget
2025-12-19 18:16 ` [PATCH v2 1/2] " Sam Bostock via GitGitGadget
2025-12-19 18:16 ` [PATCH v2 2/2] worktree: use 'prune' instead of 'expire' in help text Sam Bostock via GitGitGadget
1 sibling, 2 replies; 11+ messages in thread
From: Sam Bostock via GitGitGadget @ 2025-12-19 18:16 UTC (permalink / raw)
To: git; +Cc: Eric Sunshine, Sam Bostock
Changes from v1:
* Use 'prune' instead of 'expire' when describing the --expire option's
effect on missing worktrees, since the terminology is clearer.
Sam Bostock (2):
worktree: clarify --expire applies to missing worktrees
worktree: use 'prune' instead of 'expire' in help text
Documentation/git-worktree.adoc | 2 +-
builtin/worktree.c | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
base-commit: c4a0c8845e2426375ad257b6c221a3a7d92ecfda
Published-As: https://github.com/gitgitgadget/git/releases/tag/pr-git-2135%2Fsambostock%2Fexpire-missing-worktrees-v2
Fetch-It-Via: git fetch https://github.com/gitgitgadget/git pr-git-2135/sambostock/expire-missing-worktrees-v2
Pull-Request: https://github.com/git/git/pull/2135
Range-diff vs v1:
1: ddd4191ecb = 1: ddd4191ecb worktree: clarify --expire applies to missing worktrees
-: ---------- > 2: ff4732b72a worktree: use 'prune' instead of 'expire' in help text
--
gitgitgadget
^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH v2 1/2] worktree: clarify --expire applies to missing worktrees
2025-12-19 18:16 ` [PATCH v2 0/2] " Sam Bostock via GitGitGadget
@ 2025-12-19 18:16 ` Sam Bostock via GitGitGadget
2025-12-20 6:07 ` Junio C Hamano
2025-12-19 18:16 ` [PATCH v2 2/2] worktree: use 'prune' instead of 'expire' in help text Sam Bostock via GitGitGadget
1 sibling, 1 reply; 11+ messages in thread
From: Sam Bostock via GitGitGadget @ 2025-12-19 18:16 UTC (permalink / raw)
To: git; +Cc: Eric Sunshine, Sam Bostock, Sam Bostock
From: Sam Bostock <sam.bostock@shopify.com>
The `--expire` option for `git worktree list` and `git worktree prune`
only affects worktrees whose working directory path no longer exists.
The help text did not make this clear, and the documentation
inconsistently used "unused" for prune but "missing" for list.
This updates the help text and documentation to consistently describe
these as "missing worktrees".
Signed-off-by: Sam Bostock <sam@sambostock.ca>
---
Documentation/git-worktree.adoc | 2 +-
builtin/worktree.c | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/Documentation/git-worktree.adoc b/Documentation/git-worktree.adoc
index f272f79783..402d363064 100644
--- a/Documentation/git-worktree.adoc
+++ b/Documentation/git-worktree.adoc
@@ -271,7 +271,7 @@ mismatch, even if the links are correct.
With `list`, output additional information about worktrees (see below).
`--expire <time>`::
- With `prune`, only expire unused worktrees older than _<time>_.
+ With `prune`, only expire missing worktrees older than _<time>_.
+
With `list`, annotate missing worktrees as prunable if they are older than
_<time>_.
diff --git a/builtin/worktree.c b/builtin/worktree.c
index fbdaf2eb2e..82fcbfeccf 100644
--- a/builtin/worktree.c
+++ b/builtin/worktree.c
@@ -252,7 +252,7 @@ static int prune(int ac, const char **av, const char *prefix,
OPT__DRY_RUN(&show_only, N_("do not remove, show only")),
OPT__VERBOSE(&verbose, N_("report pruned working trees")),
OPT_EXPIRY_DATE(0, "expire", &expire,
- N_("expire working trees older than <time>")),
+ N_("expire missing working trees older than <time>")),
OPT_END()
};
@@ -1070,7 +1070,7 @@ static int list(int ac, const char **av, const char *prefix,
OPT_BOOL(0, "porcelain", &porcelain, N_("machine-readable output")),
OPT__VERBOSE(&verbose, N_("show extended annotations and reasons, if available")),
OPT_EXPIRY_DATE(0, "expire", &expire,
- N_("add 'prunable' annotation to worktrees older than <time>")),
+ N_("add 'prunable' annotation to missing worktrees older than <time>")),
OPT_SET_INT('z', NULL, &line_terminator,
N_("terminate records with a NUL character"), '\0'),
OPT_END()
--
gitgitgadget
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH v2 2/2] worktree: use 'prune' instead of 'expire' in help text
2025-12-19 18:16 ` [PATCH v2 0/2] " Sam Bostock via GitGitGadget
2025-12-19 18:16 ` [PATCH v2 1/2] " Sam Bostock via GitGitGadget
@ 2025-12-19 18:16 ` Sam Bostock via GitGitGadget
2025-12-20 6:11 ` Junio C Hamano
1 sibling, 1 reply; 11+ messages in thread
From: Sam Bostock via GitGitGadget @ 2025-12-19 18:16 UTC (permalink / raw)
To: git; +Cc: Eric Sunshine, Sam Bostock, Sam Bostock
From: Sam Bostock <sam.bostock@shopify.com>
Use 'prune' instead of 'expire' when describing the --expire option's
effect on missing worktrees, since the terminology is clearer.
Signed-off-by: Sam Bostock <sam@sambostock.ca>
---
Documentation/git-worktree.adoc | 2 +-
builtin/worktree.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Documentation/git-worktree.adoc b/Documentation/git-worktree.adoc
index 402d363064..29b43925f3 100644
--- a/Documentation/git-worktree.adoc
+++ b/Documentation/git-worktree.adoc
@@ -271,7 +271,7 @@ mismatch, even if the links are correct.
With `list`, output additional information about worktrees (see below).
`--expire <time>`::
- With `prune`, only expire missing worktrees older than _<time>_.
+ With `prune`, only prune missing worktrees if older than _<time>_.
+
With `list`, annotate missing worktrees as prunable if they are older than
_<time>_.
diff --git a/builtin/worktree.c b/builtin/worktree.c
index 82fcbfeccf..3d6547c23b 100644
--- a/builtin/worktree.c
+++ b/builtin/worktree.c
@@ -252,7 +252,7 @@ static int prune(int ac, const char **av, const char *prefix,
OPT__DRY_RUN(&show_only, N_("do not remove, show only")),
OPT__VERBOSE(&verbose, N_("report pruned working trees")),
OPT_EXPIRY_DATE(0, "expire", &expire,
- N_("expire missing working trees older than <time>")),
+ N_("prune missing working trees older than <time>")),
OPT_END()
};
--
gitgitgadget
^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [PATCH] worktree: clarify --expire applies to missing worktrees
2025-12-19 15:11 ` Eric Sunshine
@ 2025-12-20 5:44 ` Junio C Hamano
2025-12-20 7:14 ` Eric Sunshine
0 siblings, 1 reply; 11+ messages in thread
From: Junio C Hamano @ 2025-12-20 5:44 UTC (permalink / raw)
To: Eric Sunshine; +Cc: Sam Bostock via GitGitGadget, git, Sam Bostock
Eric Sunshine <sunshine@sunshineco.com> writes:
> On Fri, Dec 19, 2025 at 10:01 AM Sam Bostock via GitGitGadget
> <gitgitgadget@gmail.com> wrote:
>> The `--expire` option for `git worktree list` and `git worktree prune`
>> only affects worktrees whose working directory path no longer exists.
>> The help text did not make this clear, and the documentation
>> inconsistently used "unused" for prune but "missing" for list.
>>
>> This updates the help text and documentation to consistently describe
>> these as "missing worktrees".
>>
>> Signed-off-by: Sam Bostock <sam@sambostock.ca>
>> ---
>
> This change makes sense to me; it certainly helps clarify the meaning.
> One or two comments (below)...
>
>> diff --git a/Documentation/git-worktree.adoc b/Documentation/git-worktree.adoc
>> @@ -271,7 +271,7 @@ mismatch, even if the links are correct.
>> `--expire <time>`::
>> - With `prune`, only expire unused worktrees older than _<time>_.
>> + With `prune`, only expire missing worktrees older than _<time>_.
>
> Rather than saying that this "expires", I wonder if it would be even
> clearer to say that it prunes or removes information about missing
> worktrees. Something like:
>
> With `prune`, only prune missing worktrees if older than _<time>_.
Yup, and a very related tangent.
The entry for 'prune' itself reads like this:
`prune`::
Prune worktree information in `$GIT_DIR/worktrees`.
In general (see recent topics by Julia, for example), it is risky to
explain option DOSOMETHING in terms of the same verb dosomething.
It may serve as a memory aid, but at the same time, if the verb
dosomething is not in everyday lingo, can mean different things, or
we use it a bit differently from the common uses, explaining the
option using a more familiar verb may be helpful, especially to non
native audiences.
In the context of *removing* a worktree, there are potentially three
situations.
(1) the user has both the working tree and the control info
healthy, and they no longer needs it (i.e., "git worktree
remove")
(2) the user still has the working tree, but somehow lost the
control info. Git does not have a direct way to remove the
working tree and we expect the user to do "rm -rf" the
remaining working tree.
(3) the user somehow has lost the working tree but the control info
remains, and they want to remove the useless entry from "git
worktree list". This is what "git worktree prune" is about.
It would have been nice if we could arrange the situation (2) and
(3) to be impossible to get into, but running "rm -rf" on random
directories is not a privileged operation on most systems, so the
users can easily get into them, especially (3). It would be very
nice if we can find a better wording than "Prune worktree info" to
explain the 'prune' operation.
I wonder if this would work better.
`prune`::
Remove worktree information in `$GIT_DIR/worktrees`
only, without touching the working tree. This is
often needed when the working tree is lost (e.g.,
the user manually removed it) and the worktree
information has become dangling.
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH v2 1/2] worktree: clarify --expire applies to missing worktrees
2025-12-19 18:16 ` [PATCH v2 1/2] " Sam Bostock via GitGitGadget
@ 2025-12-20 6:07 ` Junio C Hamano
0 siblings, 0 replies; 11+ messages in thread
From: Junio C Hamano @ 2025-12-20 6:07 UTC (permalink / raw)
To: Sam Bostock via GitGitGadget; +Cc: git, Eric Sunshine, Sam Bostock
"Sam Bostock via GitGitGadget" <gitgitgadget@gmail.com> writes:
> From: Sam Bostock <sam.bostock@shopify.com>
>
> The `--expire` option for `git worktree list` and `git worktree prune`
> only affects worktrees whose working directory path no longer exists.
> The help text did not make this clear, and the documentation
> inconsistently used "unused" for prune but "missing" for list.
Well analyzed and described.
> This updates the help text and documentation to consistently describe
> these as "missing worktrees".
We phrase it more like "Update the help text and documentation to
...", as if you are asking somebody sitting on the keyboard to make
that change.
> diff --git a/builtin/worktree.c b/builtin/worktree.c
> index fbdaf2eb2e..82fcbfeccf 100644
> --- a/builtin/worktree.c
> +++ b/builtin/worktree.c
> @@ -252,7 +252,7 @@ static int prune(int ac, const char **av, const char *prefix,
> OPT__DRY_RUN(&show_only, N_("do not remove, show only")),
> OPT__VERBOSE(&verbose, N_("report pruned working trees")),
> OPT_EXPIRY_DATE(0, "expire", &expire,
> - N_("expire working trees older than <time>")),
> + N_("expire missing working trees older than <time>")),
"expire" -> "prune" or "remove". As the user already said "prune"
when they run "git worktree prune -h", using a different and more
common verb "remove" to explain the action might be more helpful
than saying "prune".
Thanks.
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH v2 2/2] worktree: use 'prune' instead of 'expire' in help text
2025-12-19 18:16 ` [PATCH v2 2/2] worktree: use 'prune' instead of 'expire' in help text Sam Bostock via GitGitGadget
@ 2025-12-20 6:11 ` Junio C Hamano
0 siblings, 0 replies; 11+ messages in thread
From: Junio C Hamano @ 2025-12-20 6:11 UTC (permalink / raw)
To: Sam Bostock via GitGitGadget; +Cc: git, Eric Sunshine, Sam Bostock
"Sam Bostock via GitGitGadget" <gitgitgadget@gmail.com> writes:
> From: Sam Bostock <sam.bostock@shopify.com>
>
> Use 'prune' instead of 'expire' when describing the --expire option's
> effect on missing worktrees, since the terminology is clearer.
>
> Signed-off-by: Sam Bostock <sam@sambostock.ca>
> ---
> Documentation/git-worktree.adoc | 2 +-
> builtin/worktree.c | 2 +-
> 2 files changed, 2 insertions(+), 2 deletions(-)
Does this v2 use exactly the same commit from v1 as [1/2] and add
this [2/2] as if you are saying "oops, the previous one missed
something we should have updated but forgot/failed to do so; here is
an improvement?"
Don't. Unless the change you deliberately made as a follow-up
improvement is logically separate and significant, that is.
Thanks.
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH] worktree: clarify --expire applies to missing worktrees
2025-12-20 5:44 ` Junio C Hamano
@ 2025-12-20 7:14 ` Eric Sunshine
2025-12-20 7:31 ` Junio C Hamano
0 siblings, 1 reply; 11+ messages in thread
From: Eric Sunshine @ 2025-12-20 7:14 UTC (permalink / raw)
To: Junio C Hamano; +Cc: Sam Bostock via GitGitGadget, git, Sam Bostock
On Sat, Dec 20, 2025 at 12:44 AM Junio C Hamano <gitster@pobox.com> wrote:
> I wonder if this would work better.
>
> `prune`::
> Remove worktree information in `$GIT_DIR/worktrees`
> only, without touching the working tree. This is
> often needed when the working tree is lost (e.g.,
> the user manually removed it) and the worktree
> information has become dangling.
Yes, this is a useful improvement, although one part confuses me (and
I would omit it). In particular, if the working tree is lost, thus the
`$GIT_DIR/worktrees` is dangling ought to be removed, then I'm not
sure why you would say "without touching the working tree" (which is
already lost).
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH] worktree: clarify --expire applies to missing worktrees
2025-12-20 7:14 ` Eric Sunshine
@ 2025-12-20 7:31 ` Junio C Hamano
2025-12-20 8:23 ` Eric Sunshine
0 siblings, 1 reply; 11+ messages in thread
From: Junio C Hamano @ 2025-12-20 7:31 UTC (permalink / raw)
To: Eric Sunshine; +Cc: Sam Bostock via GitGitGadget, git, Sam Bostock
Eric Sunshine <sunshine@sunshineco.com> writes:
> On Sat, Dec 20, 2025 at 12:44 AM Junio C Hamano <gitster@pobox.com> wrote:
>> I wonder if this would work better.
>>
>> `prune`::
>> Remove worktree information in `$GIT_DIR/worktrees`
>> only, without touching the working tree. This is
>> often needed when the working tree is lost (e.g.,
>> the user manually removed it) and the worktree
>> information has become dangling.
>
> Yes, this is a useful improvement, although one part confuses me (and
> I would omit it). In particular, if the working tree is lost, thus the
> `$GIT_DIR/worktrees` is dangling ought to be removed, then I'm not
> sure why you would say "without touching the working tree" (which is
> already lost).
Ahh, I somehow thought you can say "git worktree prune <worktree>"
to remove only the control information while the working tree is
still there, sort of "orphaning" the working tree from the main
repository. But things do not work that way.
You're right that "without touching the working tree" part is
misleading and redundant. And it is not "this is often needed"; it
is the _only_ scenario the operation makes sense.
`prune`::
Remove worktree information in `$GIT_DIR/worktrees`
for worktrees whose working trees are missing.
Useful after manually removing a working tree that
is no longer needed (but use "git worktree remove"
next time you want to do so). Also if you _moved_ a
working tree elsewhere to cause the worktree
information dangling, see "git worktree repair" to
reconnect the worktree to the new working tree
location.
perhaps?
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH] worktree: clarify --expire applies to missing worktrees
2025-12-20 7:31 ` Junio C Hamano
@ 2025-12-20 8:23 ` Eric Sunshine
0 siblings, 0 replies; 11+ messages in thread
From: Eric Sunshine @ 2025-12-20 8:23 UTC (permalink / raw)
To: Junio C Hamano; +Cc: Sam Bostock via GitGitGadget, git, Sam Bostock
On Sat, Dec 20, 2025 at 2:31 AM Junio C Hamano <gitster@pobox.com> wrote:
> Eric Sunshine <sunshine@sunshineco.com> writes:
> > On Sat, Dec 20, 2025 at 12:44 AM Junio C Hamano <gitster@pobox.com> wrote:
> >> I wonder if this would work better.
> >> `prune`::
> >> Remove worktree information in `$GIT_DIR/worktrees`
> >> only, without touching the working tree. This is
> >> often needed when the working tree is lost (e.g.,
> >> the user manually removed it) and the worktree
> >> information has become dangling.
> >
> > Yes, this is a useful improvement, although one part confuses me (and
> > I would omit it). In particular, if the working tree is lost, thus the
> > `$GIT_DIR/worktrees` is dangling ought to be removed, then I'm not
> > sure why you would say "without touching the working tree" (which is
> > already lost).
>
> Ahh, I somehow thought you can say "git worktree prune <worktree>"
> to remove only the control information while the working tree is
> still there, sort of "orphaning" the working tree from the main
> repository. But things do not work that way.
>
> You're right that "without touching the working tree" part is
> misleading and redundant. And it is not "this is often needed"; it
> is the _only_ scenario the operation makes sense.
>
> `prune`::
> Remove worktree information in `$GIT_DIR/worktrees`
> for worktrees whose working trees are missing.
> Useful after manually removing a working tree that
> is no longer needed (but use "git worktree remove"
> next time you want to do so). Also if you _moved_ a
> working tree elsewhere to cause the worktree
> information dangling, see "git worktree repair" to
> reconnect the worktree to the new working tree
> location.
>
> perhaps?
Yes, this sounds fine. This information is discussed in the
DESCRIPTION section of the document, but it doesn't hurt to flesh it
out here, as well.
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2025-12-20 8:23 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-12-19 15:00 [PATCH] worktree: clarify --expire applies to missing worktrees Sam Bostock via GitGitGadget
2025-12-19 15:11 ` Eric Sunshine
2025-12-20 5:44 ` Junio C Hamano
2025-12-20 7:14 ` Eric Sunshine
2025-12-20 7:31 ` Junio C Hamano
2025-12-20 8:23 ` Eric Sunshine
2025-12-19 18:16 ` [PATCH v2 0/2] " Sam Bostock via GitGitGadget
2025-12-19 18:16 ` [PATCH v2 1/2] " Sam Bostock via GitGitGadget
2025-12-20 6:07 ` Junio C Hamano
2025-12-19 18:16 ` [PATCH v2 2/2] worktree: use 'prune' instead of 'expire' in help text Sam Bostock via GitGitGadget
2025-12-20 6:11 ` Junio C Hamano
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).