Code

Fix an incorrect reference to --set-all.
authorJelmer Vernooij <jelmer@samba.org>
Tue, 27 Dec 2011 02:03:45 +0000 (03:03 +0100)
committerJunio C Hamano <gitster@pobox.com>
Tue, 27 Dec 2011 19:14:18 +0000 (11:14 -0800)
Signed-off-by: Jelmer Vernooij <jelmer@samba.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/config.c

index 211e118d575411b712ccf0387db2408708576902..b346f868dae65e066d56d75286e3cd885cd1aae1 100644 (file)
@@ -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) {