From: Junio C Hamano <gitster@pobox.com>
To: Josh Heinrichs <joshiheinrichs@gmail.com>
Cc: git@vger.kernel.org, Patrick Steinhardt <ps@pks.im>
Subject: Re: [PATCH v2 1/1] git-config.1: remove value from positional args in unset usage
Date: Tue, 08 Oct 2024 11:20:48 -0700 [thread overview]
Message-ID: <xmqqfrp61mnz.fsf@gitster.g> (raw)
In-Reply-To: <20241008142920.570244-2-joshiheinrichs@gmail.com> (Josh Heinrichs's message of "Tue, 8 Oct 2024 08:29:20 -0600")
Josh Heinrichs <joshiheinrichs@gmail.com> writes:
> The synopsis for `git config unset` mentions two positional arguments:
> `<name>` and `<value>`. While the first argument is correct, the second
> is not. Users are expected to provide the value via `--value=<value>`.
>
> Remove the positional argument. The `--value=<value>` option is already
> documented correctly, so this is all we need to do to fix the
> documentation.
>
> Signed-off-by: Josh Heinrichs <joshiheinrichs@gmail.com>
> ---
> Documentation/git-config.txt | 2 +-
> builtin/config.c | 4 ++--
> 2 files changed, 3 insertions(+), 3 deletions(-)
Patrick, do you mind to forge your Reviewed-by for this one?
Will queue. Thanks, both.
> diff --git a/Documentation/git-config.txt b/Documentation/git-config.txt
> index 7f81fbbea8..3e420177c1 100644
> --- a/Documentation/git-config.txt
> +++ b/Documentation/git-config.txt
> @@ -12,7 +12,7 @@ SYNOPSIS
> 'git config list' [<file-option>] [<display-option>] [--includes]
> 'git config get' [<file-option>] [<display-option>] [--includes] [--all] [--regexp] [--value=<value>] [--fixed-value] [--default=<default>] <name>
> 'git config set' [<file-option>] [--type=<type>] [--all] [--value=<value>] [--fixed-value] <name> <value>
> -'git config unset' [<file-option>] [--all] [--value=<value>] [--fixed-value] <name> <value>
> +'git config unset' [<file-option>] [--all] [--value=<value>] [--fixed-value] <name>
> 'git config rename-section' [<file-option>] <old-name> <new-name>
> 'git config remove-section' [<file-option>] <name>
> 'git config edit' [<file-option>]
> diff --git a/builtin/config.c b/builtin/config.c
> index 97e4d5f57c..d60e106bd6 100644
> --- a/builtin/config.c
> +++ b/builtin/config.c
> @@ -19,7 +19,7 @@ static const char *const builtin_config_usage[] = {
> N_("git config list [<file-option>] [<display-option>] [--includes]"),
> N_("git config get [<file-option>] [<display-option>] [--includes] [--all] [--regexp] [--value=<value>] [--fixed-value] [--default=<default>] <name>"),
> N_("git config set [<file-option>] [--type=<type>] [--all] [--value=<value>] [--fixed-value] <name> <value>"),
> - N_("git config unset [<file-option>] [--all] [--value=<value>] [--fixed-value] <name> <value>"),
> + N_("git config unset [<file-option>] [--all] [--value=<value>] [--fixed-value] <name>"),
> N_("git config rename-section [<file-option>] <old-name> <new-name>"),
> N_("git config remove-section [<file-option>] <name>"),
> N_("git config edit [<file-option>]"),
> @@ -43,7 +43,7 @@ static const char *const builtin_config_set_usage[] = {
> };
>
> static const char *const builtin_config_unset_usage[] = {
> - N_("git config unset [<file-option>] [--all] [--value=<value>] [--fixed-value] <name> <value>"),
> + N_("git config unset [<file-option>] [--all] [--value=<value>] [--fixed-value] <name>"),
> NULL
> };
next prev parent reply other threads:[~2024-10-08 18:20 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-10-08 4:07 [PATCH 0/1] Remove value from positional args in config unset usage Josh Heinrichs
2024-10-08 4:07 ` [PATCH 1/1] git-config.1: remove value from positional args in " Josh Heinrichs
2024-10-08 12:37 ` Patrick Steinhardt
2024-10-08 14:29 ` [PATCH v2 0/1] Remove value from position args in config " Josh Heinrichs
2024-10-08 14:29 ` [PATCH v2 1/1] git-config.1: remove value from positional args in " Josh Heinrichs
2024-10-08 18:20 ` Junio C Hamano [this message]
2024-10-09 3:37 ` Patrick Steinhardt
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=xmqqfrp61mnz.fsf@gitster.g \
--to=gitster@pobox.com \
--cc=git@vger.kernel.org \
--cc=joshiheinrichs@gmail.com \
--cc=ps@pks.im \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.