This adds the ability for --edit-todo to check if commits were dropped by the user. As both edit_todo_list() and complete_action() parse the todo list and check for dropped commits, the code doing so in the latter is removed to reduce duplication. Tests added previously should work now. Signed-off-by: Alban Gruin <alban.gruin@xxxxxxxxx> --- rebase-interactive.c | 7 +++---- sequencer.c | 5 +---- t/t3404-rebase-interactive.sh | 4 ++-- 3 files changed, 6 insertions(+), 10 deletions(-) diff --git a/rebase-interactive.c b/rebase-interactive.c index aa18ae82b7..1b8d7f25bf 100644 --- a/rebase-interactive.c +++ b/rebase-interactive.c @@ -115,10 +115,9 @@ int edit_todo_list(struct repository *r, struct todo_list *todo_list, if (initial && new_todo->buf.len == 0) return -3; - /* For the initial edit, the todo list gets parsed in - * complete_action(). */ - if (!initial) - return todo_list_parse_insn_buffer(r, new_todo->buf.buf, new_todo); + if (todo_list_parse_insn_buffer(r, new_todo->buf.buf, new_todo) || + todo_list_check(todo_list, new_todo)) + return -4; return 0; } diff --git a/sequencer.c b/sequencer.c index 9d5964fd81..92f2e6f6a0 100644 --- a/sequencer.c +++ b/sequencer.c @@ -5062,10 +5062,7 @@ int complete_action(struct repository *r, struct replay_opts *opts, unsigned fla todo_list_release(&new_todo); return error(_("nothing to do")); - } - - if (todo_list_parse_insn_buffer(r, new_todo.buf.buf, &new_todo) || - todo_list_check(todo_list, &new_todo)) { + } else if (res == -4) { fprintf(stderr, _(edit_todo_list_advice)); checkout_onto(r, opts, onto_name, &onto->object.oid, orig_head); todo_list_release(&new_todo); diff --git a/t/t3404-rebase-interactive.sh b/t/t3404-rebase-interactive.sh index be8badf7b3..040ec616f3 100755 --- a/t/t3404-rebase-interactive.sh +++ b/t/t3404-rebase-interactive.sh @@ -1366,7 +1366,7 @@ test_expect_success 'rebase --edit-todo respects rebase.missingCommitsCheck = ig actual ' -test_expect_failure 'rebase --edit-todo respects rebase.missingCommitsCheck = warn' ' +test_expect_success 'rebase --edit-todo respects rebase.missingCommitsCheck = warn' ' cat >expect <<-EOF && error: invalid line 1: badcmd $(git rev-list --pretty=oneline --abbrev-commit -1 master~4) Warning: some commits may have been dropped accidentally. @@ -1395,7 +1395,7 @@ test_expect_failure 'rebase --edit-todo respects rebase.missingCommitsCheck = wa actual ' -test_expect_failure 'rebase --edit-todo respects rebase.missingCommitsCheck = error' ' +test_expect_success 'rebase --edit-todo respects rebase.missingCommitsCheck = error' ' cat >expect <<-EOF && error: invalid line 1: badcmd $(git rev-list --pretty=oneline --abbrev-commit -1 master~4) Warning: some commits may have been dropped accidentally. -- 2.24.0.2.ga4a700ce8b