Skip to content

Commit

Permalink
Fix an incorrect reference to --set-all.
Browse files Browse the repository at this point in the history
Signed-off-by: Jelmer Vernooij <jelmer@samba.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Jelmer Vernooij authored and Junio C Hamano committed Dec 27, 2011
1 parent 5a2df36 commit 67e223e
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 @@ -442,7 +442,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 67e223e

Please sign in to comment.