Skip to content

Commit 9a8e485

Browse files
committed
Merge branch 'jv/maint-config-set' into maint
* jv/maint-config-set: Fix an incorrect reference to --set-all.
2 parents 0d57085 + 67e223e commit 9a8e485

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
@@ -444,7 +444,7 @@ int cmd_config(int argc, const char **argv, const char *prefix)
444444
ret = git_config_set(argv[0], value);
445445
if (ret == CONFIG_NOTHING_SET)
446446
error("cannot overwrite multiple values with a single value\n"
447-
" Use a regexp, --add or --set-all to change %s.", argv[0]);
447+
" Use a regexp, --add or --replace-all to change %s.", argv[0]);
448448
return ret;
449449
}
450450
else if (actions == ACTION_SET_ALL) {

0 commit comments

Comments
 (0)