]> git.ipfire.org Git - thirdparty/git.git/commitdiff
commit: remove irrelavent prompt on `--allow-empty-message`
authorHu Jialun <hujialun@comp.nus.edu.sg>
Fri, 9 Jul 2021 18:07:32 +0000 (02:07 +0800)
committerJunio C Hamano <gitster@pobox.com>
Fri, 9 Jul 2021 19:08:18 +0000 (12:08 -0700)
Even when the `--allow-empty-message` option is given, "git commit"
offers an interactive editor session with prefilled message that says
the commit will be aborted if the buffer is emptied, which is wrong.

Remove the "an empty message aborts" part from the message when the
option is given to fix it.

Helped-by: Junio C Hamano <gitster@pobox.com>
Helped-by: Đoàn Trần Công Danh <congdanhqx@gmail.com>
Helped-by: Felipe Contreras <felipe.contreras@gmail.com>
Signed-off-by: Hu Jialun <hujialun@comp.nus.edu.sg>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/commit.c
t/t7500-commit-template-squash-signoff.sh

index e68d139dee0b9be5b95a684e8c32c781cdf02dae..cfbc83751a5f3fadaecd9bd512f85854b888398e 100644 (file)
@@ -889,15 +889,22 @@ static int prepare_to_commit(const char *index_file, const char *prefix,
                int ident_shown = 0;
                int saved_color_setting;
                struct ident_split ci, ai;
-               const char *hint_cleanup_all = _("Please enter the commit message for your changes."
-                                                " Lines starting\nwith '%c' will be ignored,"
-                                                " and an empty message aborts the commit.\n");
-               const char *hint_cleanup_space = _("Please enter the commit message for your changes."
-                                                  " Lines starting\n"
-                                                  "with '%c' will be kept; you may remove them"
-                                                  " yourself if you want to.\n"
-                                                  "An empty message aborts the commit.\n");
-
+               const char *hint_cleanup_all = allow_empty_message ?
+                       _("Please enter the commit message for your changes."
+                         " Lines starting\nwith '%c' will be ignored.\n") :
+                       _("Please enter the commit message for your changes."
+                         " Lines starting\nwith '%c' will be ignored, and an empty"
+                         " message aborts the commit.\n");
+               const char *hint_cleanup_space = allow_empty_message ?
+                       _("Please enter the commit message for your changes."
+                         " Lines starting\n"
+                         "with '%c' will be kept; you may remove them"
+                         " yourself if you want to.\n") :
+                       _("Please enter the commit message for your changes."
+                         " Lines starting\n"
+                         "with '%c' will be kept; you may remove them"
+                         " yourself if you want to.\n"
+                         "An empty message aborts the commit.\n");
                if (whence != FROM_COMMIT) {
                        if (cleanup_mode == COMMIT_MSG_CLEANUP_SCISSORS &&
                                !merge_contains_scissors)
index 7d02f79c0deef8d271468f0aeb6ee6ddbdc44969..54c2082acb8d19338aed25277467b6a9760c7bda 100755 (executable)
@@ -498,7 +498,7 @@ test_expect_success 'invalid message options when using --fixup' '
 cat >expected-template <<EOF
 
 # Please enter the commit message for your changes. Lines starting
-# with '#' will be ignored, and an empty message aborts the commit.
+# with '#' will be ignored.
 #
 # Author:    A U Thor <author@example.com>
 #