commit: remove 'Clever' message for --only --amend
The behavior is now documented; more importantly, rewarding the user with a "Wow, you are clever" praise afterwards is not an effective way to advertise the feature--at that point the user already knows. Signed-off-by: Andreas Krey <a.krey@gmx.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Andreas Krey committed
Dec 9, 2016 at 05:10 UTC
beb635ca9ced5cd8f0eb5d2def9468f14bd243bc
1 file changed
-2
builtin/commit.c
-2
@@ -1203,8 +1203,6 @@ static int parse_and_validate_options(int argc, const char *argv[],
1203
die(_("Only one of --include/--only/--all/--interactive/--patch can be used."));
1204
if (argc == 0 && (also || (only && !amend && !allow_empty)))
1205
die(_("No paths with --include/--only does not make sense."));
1206
- if (argc == 0 && only && amend)
1207
- only_include_assumed = _("Clever... amending the last one with dirty index.");
1206
if (argc > 0 && !also && !only)
1207
only_include_assumed = _("Explicit paths specified without -i or -o; assuming --only paths...");
1208
if (!cleanup_arg || !strcmp(cleanup_arg, "default"))