Skip to content

Commit

Permalink
Merge branch 'jv/maint-config-set' into maint
Browse files Browse the repository at this point in the history
* jv/maint-config-set:
  Fix an incorrect reference to --set-all.
  • Loading branch information
Junio C Hamano committed Dec 28, 2011
2 parents 0d57085 + 67e223e commit 9a8e485
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builtin/config.c
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ int cmd_config(int argc, const char **argv, const char *prefix)
ret = git_config_set(argv[0], value);
if (ret == CONFIG_NOTHING_SET)
error("cannot overwrite multiple values with a single value\n"
" Use a regexp, --add or --set-all to change %s.", argv[0]);
" Use a regexp, --add or --replace-all to change %s.", argv[0]);
return ret;
}
else if (actions == ACTION_SET_ALL) {
Expand Down

0 comments on commit 9a8e485

Please sign in to comment.