public inbox for git@vger.kernel.org 
 help / color / mirror / Atom feed
* [bug report] erroneous suggestion for "--add" option in `git config set` error message
@ 2025-11-20 23:39 Paul Wintz
  2025-11-24 20:22 ` René Scharfe
  2025-11-24 20:33 ` [PATCH] config: fix suggestion for failed set of multi-valued option René Scharfe
  0 siblings, 2 replies; 3+ messages in thread
From: Paul Wintz @ 2025-11-20 23:39 UTC (permalink / raw)
  To: git

It seems that there is an erroneous suggestion in a `git config set`
error message when setting a value that already has multiple values.
The error message says to use the `--add` option, but this option does
not seem to exist. The `--append` option should be suggested instead.

Steps to reproduce:

1. Create a configuration with multiple values:

    git config set --global test.test 'hello'
    git config set --global --append test.test 'hi'

2. Try to set the value of `test.test`:

    git config set --global test.test 'hi'

An error message is shown:

    warning: test.test has multiple values
    error: cannot overwrite multiple values with a single value
           Use a regexp, --add or --replace-all to change test.test.

3. Following the direction to use `--add` produces an error:

    > git config set --add test.test "aloha"
    error: unknown option `add'

The error message should say `--append` instead of `--add`.

[System Info]
git version:
git version 2.48.1
cpu: x86_64
no commit associated with this build
sizeof-long: 8
sizeof-size_t: 8
shell-path: /bin/sh
libcurl: 8.12.1
zlib: 1.3.1
uname: Linux 6.14.0-35-generic #35-Ubuntu SMP PREEMPT_DYNAMIC Sat Oct
11 10:06:31 UTC 2025 x86_64
compiler info: gnuc: 14.2
libc info: glibc: 2.41
$SHELL (typically, interactive shell): /bin/bash


[Enabled Hooks]
post-checkout
post-commit
post-merge
pre-push

--
Paul Wintz, PhD
UCSC Hybrid Systems Laboratory
Hartnell College, Adjunct Faculty
PaulWintz.com

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [bug report] erroneous suggestion for "--add" option in `git config set` error message
  2025-11-20 23:39 [bug report] erroneous suggestion for "--add" option in `git config set` error message Paul Wintz
@ 2025-11-24 20:22 ` René Scharfe
  2025-11-24 20:33 ` [PATCH] config: fix suggestion for failed set of multi-valued option René Scharfe
  1 sibling, 0 replies; 3+ messages in thread
From: René Scharfe @ 2025-11-24 20:22 UTC (permalink / raw)
  To: Paul Wintz, git; +Cc: Patrick Steinhardt, Junio C Hamano

On 11/21/25 12:39 AM, Paul Wintz wrote:
> It seems that there is an erroneous suggestion in a `git config set`
> error message when setting a value that already has multiple values.
> The error message says to use the `--add` option, but this option does
> not seem to exist. The `--append` option should be suggested instead.
> 
> Steps to reproduce:
> 
> 1. Create a configuration with multiple values:
> 
>     git config set --global test.test 'hello'
>     git config set --global --append test.test 'hi'
> 
> 2. Try to set the value of `test.test`:
> 
>     git config set --global test.test 'hi'
> 
> An error message is shown:
> 
>     warning: test.test has multiple values
>     error: cannot overwrite multiple values with a single value
>            Use a regexp, --add or --replace-all to change test.test.
> 
> 3. Following the direction to use `--add` produces an error:
> 
>     > git config set --add test.test "aloha"
>     error: unknown option `add'
> 
> The error message should say `--append` instead of `--add`.
"git config --append <name> <value>" still works, but your suggestion
is good nevertheless.

--- >8 ---From 066828b25bb7d3086b9bff4188af30e07c7e1c16 Mon Sep 17 00:00:00 2001
Subject: [PATCH] config: fix suggestion for failed set of multi-valued option

The command "git config set <name> <value>" balks at options with
multiple values and suggests to use old-style "git config" actions that
can be used to change some or all of them.  List modern "git config set"
flags instead, as they are more fitting in this context.

Reported-by: Paul Wintz <pwintz@ucsc•edu>
Signed-off-by: René Scharfe <l.s.r@web•de>
---
 builtin/config.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/builtin/config.c b/builtin/config.c
index 75852bd79d..86e0cd77f3 100644
--- a/builtin/config.c
+++ b/builtin/config.c
@@ -985,7 +985,7 @@ static int cmd_config_set(int argc, const char **argv, const char *prefix,
 						     argv[0], comment, value);
 		if (ret == CONFIG_NOTHING_SET)
 			error(_("cannot overwrite multiple values with a single value\n"
-			"       Use a regexp, --add or --replace-all to change %s."), argv[0]);
+			"       Use --value=<pattern>, --append or --all to change %s."), argv[0]);
 	}
 
 	location_options_release(&location_opts);
-- 
2.52.0


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [PATCH] config: fix suggestion for failed set of multi-valued option
  2025-11-20 23:39 [bug report] erroneous suggestion for "--add" option in `git config set` error message Paul Wintz
  2025-11-24 20:22 ` René Scharfe
@ 2025-11-24 20:33 ` René Scharfe
  1 sibling, 0 replies; 3+ messages in thread
From: René Scharfe @ 2025-11-24 20:33 UTC (permalink / raw)
  To: Paul Wintz, git; +Cc: Junio C Hamano, Patrick Steinhardt

The command "git config set <name> <value>" fails for an option that has
multiple values.  List the "git config set" flags that can be used,
instead of old-style "git config" actions.

Reported-by: Paul Wintz <pwintz@ucsc•edu>
Signed-off-by: René Scharfe <l.s.r@web•de>
---
Resent as a pure patch because I messed up the scissors line.

 builtin/config.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/builtin/config.c b/builtin/config.c
index 75852bd79d..86e0cd77f3 100644
--- a/builtin/config.c
+++ b/builtin/config.c
@@ -985,7 +985,7 @@ static int cmd_config_set(int argc, const char **argv, const char *prefix,
 						     argv[0], comment, value);
 		if (ret == CONFIG_NOTHING_SET)
 			error(_("cannot overwrite multiple values with a single value\n"
-			"       Use a regexp, --add or --replace-all to change %s."), argv[0]);
+			"       Use --value=<pattern>, --append or --all to change %s."), argv[0]);
 	}
 
 	location_options_release(&location_opts);
-- 
2.52.0

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2025-11-24 20:38 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-11-20 23:39 [bug report] erroneous suggestion for "--add" option in `git config set` error message Paul Wintz
2025-11-24 20:22 ` René Scharfe
2025-11-24 20:33 ` [PATCH] config: fix suggestion for failed set of multi-valued option René Scharfe

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox