aboutsummaryrefslogtreecommitdiff
path: root/builtin/commit.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2012-07-15 21:39:37 -0700
committerJunio C Hamano <gitster@pobox.com>2012-07-15 21:39:38 -0700
commit8647b585d899bc7458fbc5c12c2c44331da5b4c0 (patch)
tree7f465aa5aecfc0b9795808b22b94bd3bb39d050e /builtin/commit.c
parentd06414b9ce66137a7c7464fbc6ce3512c51dc3de (diff)
parentd9a93575722d9ea918f090892b06618ddf0d1d65 (diff)
downloadgit-8647b585d899bc7458fbc5c12c2c44331da5b4c0.tar.gz
git-8647b585d899bc7458fbc5c12c2c44331da5b4c0.tar.xz
Merge branch 'cw/amend-commit-without-message'
"commit --amend" used to refuse amending a commit with an empty log message, with or without "--allow-empty-message". * cw/amend-commit-without-message: Allow edit of empty message with commit --amend
Diffstat (limited to 'builtin/commit.c')
-rw-r--r--builtin/commit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/commit.c b/builtin/commit.c
index f43eaafb3..6515da278 100644
--- a/builtin/commit.c
+++ b/builtin/commit.c
@@ -640,7 +640,7 @@ static int prepare_to_commit(const char *index_file, const char *prefix,
hook_arg1 = "message";
} else if (use_message) {
buffer = strstr(use_message_buffer, "\n\n");
- if (!buffer || buffer[2] == '\0')
+ if (!use_editor && (!buffer || buffer[2] == '\0'))
die(_("commit has empty message"));
strbuf_add(&sb, buffer + 2, strlen(buffer + 2));
hook_arg1 = "commit";