summaryrefslogtreecommitdiff
path: root/builtin
diff options
context:
space:
mode:
authorAndreas Krey <a.krey@gmx.de>2016-12-09 04:10:21 (GMT)
committerJunio C Hamano <gitster@pobox.com>2016-12-09 18:52:46 (GMT)
commitbeb635ca9ced5cd8f0eb5d2def9468f14bd243bc (patch)
tree78c8810d93ed9b12a4e73d2d3e38508a4ce3f74b /builtin
parent319d835240b752b94ccb67f6515759824955937b (diff)
downloadgit-beb635ca9ced5cd8f0eb5d2def9468f14bd243bc.zip
git-beb635ca9ced5cd8f0eb5d2def9468f14bd243bc.tar.gz
git-beb635ca9ced5cd8f0eb5d2def9468f14bd243bc.tar.bz2
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>
Diffstat (limited to 'builtin')
-rw-r--r--builtin/commit.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/builtin/commit.c b/builtin/commit.c
index 58b799c..fc3655a 100644
--- a/builtin/commit.c
+++ b/builtin/commit.c
@@ -1203,8 +1203,6 @@ static int parse_and_validate_options(int argc, const char *argv[],
die(_("Only one of --include/--only/--all/--interactive/--patch can be used."));
if (argc == 0 && (also || (only && !amend && !allow_empty)))
die(_("No paths with --include/--only does not make sense."));
- if (argc == 0 && only && amend)
- only_include_assumed = _("Clever... amending the last one with dirty index.");
if (argc > 0 && !also && !only)
only_include_assumed = _("Explicit paths specified without -i or -o; assuming --only paths...");
if (!cleanup_arg || !strcmp(cleanup_arg, "default"))