Skip to content

Commit 67e223e

Browse files
jelmergitster
authored andcommitted
Fix an incorrect reference to --set-all.
Signed-off-by: Jelmer Vernooij <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 5a2df36 commit 67e223e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

builtin/config.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@ int cmd_config(int argc, const char **argv, const char *prefix)
442442
ret = git_config_set(argv[0], value);
443443
if (ret == CONFIG_NOTHING_SET)
444444
error("cannot overwrite multiple values with a single value\n"
445-
" Use a regexp, --add or --set-all to change %s.", argv[0]);
445+
" Use a regexp, --add or --replace-all to change %s.", argv[0]);
446446
return ret;
447447
}
448448
else if (actions == ACTION_SET_ALL) {

0 commit comments

Comments
 (0)