We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4fd5b1d + 8b34b6a commit 870a042Copy full SHA for 870a042
1 file changed
sequencer.c
@@ -2067,6 +2067,9 @@ static int update_squash_messages(struct repository *r,
2067
const char *message, *body;
2068
const char *encoding = get_commit_output_encoding();
2069
2070
+ if (!is_fixup(command))
2071
+ BUG("not a FIXUP or SQUASH %d", command);
2072
+
2073
if (ctx->current_fixup_count > 0) {
2074
struct strbuf header = STRBUF_INIT;
2075
char *eol;
@@ -2134,8 +2137,7 @@ static int update_squash_messages(struct repository *r,
2134
2137
strbuf_addstr(&buf, "\n\n");
2135
2138
strbuf_add_commented_lines(&buf, body, strlen(body),
2136
2139
comment_line_str);
- } else
- return error(_("unknown command: %d"), command);
2140
+ }
2141
repo_unuse_commit_buffer(r, commit, message);
2142
2143
if (!res)
0 commit comments