* [PATCH 1/1] show-ref: improve short help messages of options
@ 2024-07-24 11:11 Alexander Shopov
2024-07-25 7:15 ` Patrick Steinhardt
0 siblings, 1 reply; 5+ messages in thread
From: Alexander Shopov @ 2024-07-24 11:11 UTC (permalink / raw)
To: git, gitster, worldhello.net; +Cc: Alexander Shopov
Trivial change to indicate that branches and tags are real options
that can be used combined to get more information. This helps with
linting translations and prompting the user that the terms represent
options.
Signed-off-by: Alexander Shopov <ash@kambanaria.org>
---
builtin/show-ref.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/builtin/show-ref.c b/builtin/show-ref.c
index 839a5c29f3..85700caae9 100644
--- a/builtin/show-ref.c
+++ b/builtin/show-ref.c
@@ -293,8 +293,8 @@ int cmd_show_ref(int argc, const char **argv, const char *prefix)
struct show_one_options show_one_opts = {0};
int verify = 0, exists = 0;
const struct option show_ref_options[] = {
- OPT_BOOL(0, "tags", &patterns_opts.tags_only, N_("only show tags (can be combined with branches)")),
- OPT_BOOL(0, "branches", &patterns_opts.branches_only, N_("only show branches (can be combined with tags)")),
+ OPT_BOOL(0, "tags", &patterns_opts.tags_only, N_("only show tags (can be combined with --branches)")),
+ OPT_BOOL(0, "branches", &patterns_opts.branches_only, N_("only show branches (can be combined with --tags)")),
OPT_HIDDEN_BOOL(0, "heads", &patterns_opts.branches_only,
N_("deprecated synonym for --branches")),
OPT_BOOL(0, "exists", &exists, N_("check for reference existence without resolving")),
--
2.45.2
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH 1/1] show-ref: improve short help messages of options
2024-07-24 11:11 [PATCH 1/1] show-ref: improve short help messages of options Alexander Shopov
@ 2024-07-25 7:15 ` Patrick Steinhardt
2024-07-25 15:03 ` Junio C Hamano
0 siblings, 1 reply; 5+ messages in thread
From: Patrick Steinhardt @ 2024-07-25 7:15 UTC (permalink / raw)
To: Alexander Shopov; +Cc: git, gitster, worldhello.net
[-- Attachment #1: Type: text/plain, Size: 1362 bytes --]
On Wed, Jul 24, 2024 at 02:11:11PM +0300, Alexander Shopov wrote:
> diff --git a/builtin/show-ref.c b/builtin/show-ref.c
> index 839a5c29f3..85700caae9 100644
> --- a/builtin/show-ref.c
> +++ b/builtin/show-ref.c
> @@ -293,8 +293,8 @@ int cmd_show_ref(int argc, const char **argv, const char *prefix)
> struct show_one_options show_one_opts = {0};
> int verify = 0, exists = 0;
> const struct option show_ref_options[] = {
> - OPT_BOOL(0, "tags", &patterns_opts.tags_only, N_("only show tags (can be combined with branches)")),
> - OPT_BOOL(0, "branches", &patterns_opts.branches_only, N_("only show branches (can be combined with tags)")),
> + OPT_BOOL(0, "tags", &patterns_opts.tags_only, N_("only show tags (can be combined with --branches)")),
> + OPT_BOOL(0, "branches", &patterns_opts.branches_only, N_("only show branches (can be combined with --tags)")),
> OPT_HIDDEN_BOOL(0, "heads", &patterns_opts.branches_only,
> N_("deprecated synonym for --branches")),
> OPT_BOOL(0, "exists", &exists, N_("check for reference existence without resolving")),
Agreed, I think that this is a sensible change. In practice, this
feature can also be combined with `--head`, so in that spirit we might
even change it to:
"only show tags (can be combined with --branches and --head)"
Not sure though whether this is getting too noisy?
Patrick
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 1/1] show-ref: improve short help messages of options
2024-07-25 7:15 ` Patrick Steinhardt
@ 2024-07-25 15:03 ` Junio C Hamano
2024-07-26 12:28 ` Patrick Steinhardt
0 siblings, 1 reply; 5+ messages in thread
From: Junio C Hamano @ 2024-07-25 15:03 UTC (permalink / raw)
To: Patrick Steinhardt; +Cc: Alexander Shopov, git, worldhello.net
Patrick Steinhardt <ps@pks.im> writes:
> Agreed, I think that this is a sensible change. In practice, this
> feature can also be combined with `--head`, so in that spirit we might
> even change it to:
>
> "only show tags (can be combined with --branches and --head)"
>
> Not sure though whether this is getting too noisy?
It is somewhat an oxymoron that "*only* show X" can be combined with
"*only* show Y" in the first place.
For a reader to accept it without finding it awkward, the reader
must understand that
(1) the command shows by default everything, but
(2) if any of these "only show" options are given, the command
stops showing everything and the user can pick which subset of
"only show" options to give, which work additively.
But if the reader knows that much already, it is redundant to say
"can be combined with", isn't it?
So, I dunno.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 1/1] show-ref: improve short help messages of options
2024-07-25 15:03 ` Junio C Hamano
@ 2024-07-26 12:28 ` Patrick Steinhardt
2024-07-26 15:46 ` Junio C Hamano
0 siblings, 1 reply; 5+ messages in thread
From: Patrick Steinhardt @ 2024-07-26 12:28 UTC (permalink / raw)
To: Junio C Hamano; +Cc: Alexander Shopov, git, worldhello.net
[-- Attachment #1: Type: text/plain, Size: 1823 bytes --]
On Thu, Jul 25, 2024 at 08:03:06AM -0700, Junio C Hamano wrote:
> Patrick Steinhardt <ps@pks.im> writes:
>
> > Agreed, I think that this is a sensible change. In practice, this
> > feature can also be combined with `--head`, so in that spirit we might
> > even change it to:
> >
> > "only show tags (can be combined with --branches and --head)"
> >
> > Not sure though whether this is getting too noisy?
>
> It is somewhat an oxymoron that "*only* show X" can be combined with
> "*only* show Y" in the first place.
Yeah, this is the root of the problem why those braces are required in
the first place. But that being said, the option is somewhat funny
because it indeed limits what we show to only show tags. The fact that
it can be combined with other options to expand on what it shows doesn't
change that, so I think "only" is okay-ish even though it certainly is
not perfect.
> For a reader to accept it without finding it awkward, the reader
> must understand that
>
> (1) the command shows by default everything, but
>
> (2) if any of these "only show" options are given, the command
> stops showing everything and the user can pick which subset of
> "only show" options to give, which work additively.
>
> But if the reader knows that much already, it is redundant to say
> "can be combined with", isn't it?
Hum. I personally find the way that this is worded intuitive and think
that I would find it helpful when reading it as a less-knowledgeable
user. But naturally, I'm quite biased and may be too unimaginative to
come up with a better wording.
Meanwhile, I think that the proposed change strictly improves this
message and thus don't see a reason not to take it. Unless we see
somebody come up with a less-awkward solution, that is.
Patrick
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 1/1] show-ref: improve short help messages of options
2024-07-26 12:28 ` Patrick Steinhardt
@ 2024-07-26 15:46 ` Junio C Hamano
0 siblings, 0 replies; 5+ messages in thread
From: Junio C Hamano @ 2024-07-26 15:46 UTC (permalink / raw)
To: Patrick Steinhardt; +Cc: Alexander Shopov, git, worldhello.net
Patrick Steinhardt <ps@pks.im> writes:
> Meanwhile, I think that the proposed change strictly improves this
> message and thus don't see a reason not to take it. Unless we see
> somebody come up with a less-awkward solution, that is.
Oh, that part is uncontroversial.
The wording without double-dashes has been with us forever since the
command was updated to use the parse-options API by 69932bc6
(show-ref: migrate to parse-options, 2009-06-20), and so far nobody
complained about it, so while "strictly improves" may be true (i.e.
the delta may not be negative), the degree of improvement may not be
all that much to be worth the combined brain cycles we are spending
on this topic. Taking the patch would not make the future work any
harder to truly improve it further, so I do not see any reason not
to take it.
Thanks.
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2024-07-26 15:46 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-24 11:11 [PATCH 1/1] show-ref: improve short help messages of options Alexander Shopov
2024-07-25 7:15 ` Patrick Steinhardt
2024-07-25 15:03 ` Junio C Hamano
2024-07-26 12:28 ` Patrick Steinhardt
2024-07-26 15:46 ` 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).