[PATCH 04/11] sequencer: never reschedule on failed commit
From: Phillip Wood <hidden>
Date: 2026-06-30 15:29:20
Subsystem:
the rest · Maintainer:
Linus Torvalds
From: Phillip Wood <hidden>
Date: 2026-06-30 15:29:20
Subsystem:
the rest · Maintainer:
Linus Torvalds
From: Phillip Wood <redacted> If "git commit" fails to run then run_git_commit() returns -1 which causes the current command to be rescheduled. This is incorrect as we have successfully picked the commit and have written all the state files we need to successfully commit when the user continues. Fix this by converting -1 to 1 which matches what do_merge() does. Signed-off-by: Phillip Wood <redacted> --- sequencer.c | 6 ++++++ 1 file changed, 6 insertions(+)
diff --git a/sequencer.c b/sequencer.c
index e6626c4db4e..d7e439b1feb 100644
--- a/sequencer.c
+++ b/sequencer.c@@ -2542,6 +2542,12 @@ static int do_pick_commit(struct repository *r, res = run_git_commit(NULL, reflog_action, opts, flags); *check_todo = 1; } + /* + * If "git commit" failed to run than res == -1 but we dont + * want reschedule the last command because the picking the + * commit was successful. + */ + res = !!res; }
--
2.54.0.200.gfd8d68259e3