From: "Thomas Bachem via GitGitGadget" <gitgitgadget@gmail.com>
To: git@vger.kernel.org
Cc: Phillip Wood <phillip.wood@dunelm.org.uk>,
Patrick Steinhardt <ps@pks.im>,
Junio C Hamano <gitster@pobox.com>,
Johannes Schindelin <johannes.schindelin@gmx.de>,
Phillip Wood <phillip.wood123@gmail.com>,
Kristoffer Haugsbakk <kristofferhaugsbakk@fastmail.com>,
Thomas Bachem <mail@thomasbachem.com>,
Thomas Bachem <mail@thomasbachem.com>
Subject: [PATCH v4 3/3] sequencer: disable auto maintenance in spawned commands
Date: Wed, 09 Sep 2026 08:25:31 +0000 [thread overview]
Message-ID: <031b3bd498bd5efee7e0d9752a6dd36fe7a55360.1788942331.git.gitgitgadget@gmail.com> (raw)
In-Reply-To: <pull.2217.v4.git.1788942331.gitgitgadget@gmail.com>
From: Thomas Bachem <mail@thomasbachem.com>
Sequencer-spawned commands like 'commit' and 'merge' run
background auto maintenance, which interferes with ongoing
operations (e.g. 'rerere gc' holding MERGE_RR.lock or repacks
deleting active packs).
Pass maintenance.auto=false via GIT_CONFIG_PARAMETERS to the
spawned commit, merge and exec commands. Appending it after the
user's own settings ensures it wins, and the environment reaches
whatever they spawn in turn.
Auto maintenance now runs exactly once when the sequence
completes. Commands run manually by the user while stopped are
unaffected and continue to run auto maintenance normally.
Assisted-by: Claude Fable 5.1
Signed-off-by: Thomas Bachem <mail@thomasbachem.com>
---
sequencer.c | 38 ++++++++++++++++++++++++++++++---
t/t3418-rebase-continue.sh | 11 +++++++---
t/t3510-cherry-pick-sequence.sh | 14 +++++++++---
3 files changed, 54 insertions(+), 9 deletions(-)
diff --git a/sequencer.c b/sequencer.c
index 65afd100d9..e99ef09f02 100644
--- a/sequencer.c
+++ b/sequencer.c
@@ -234,6 +234,11 @@ struct replay_ctx {
* Whether message contains a commit message.
*/
unsigned have_message :1;
+ /*
+ * GIT_CONFIG_PARAMETERS for the commands we spawn, with auto
+ * maintenance turned off. Built on first use.
+ */
+ char *config_parameters;
};
struct replay_ctx* replay_ctx_new(void)
@@ -407,6 +412,7 @@ static void replay_ctx_release(struct replay_ctx *ctx)
{
strbuf_release(&ctx->current_fixups);
strbuf_release(&ctx->message);
+ free(ctx->config_parameters);
}
void replay_opts_release(struct replay_opts *opts)
@@ -1107,6 +1113,27 @@ static int run_command_silent_on_success(struct child_process *cmd)
return rc;
}
+/*
+ * Don't let the commands we spawn run auto maintenance. It would race
+ * us for MERGE_RR.lock or delete packs we still have open. Our caller
+ * runs it once the sequence is done.
+ */
+static void disable_auto_maintenance(struct replay_opts *opts,
+ struct child_process *cmd)
+{
+ if (!opts->ctx->config_parameters) {
+ const char *old = getenv(CONFIG_DATA_ENVIRONMENT);
+ struct strbuf buf = STRBUF_INIT;
+
+ if (old && *old)
+ strbuf_addstr(&buf, old);
+ git_config_append_parameter(&buf, "maintenance.auto", "false");
+ opts->ctx->config_parameters = strbuf_detach(&buf, NULL);
+ }
+ strvec_pushf(&cmd->env, "%s=%s", CONFIG_DATA_ENVIRONMENT,
+ opts->ctx->config_parameters);
+}
+
/*
* If we are cherry-pick, and if the merge did not result in
* hand-editing, we will hit this commit and inherit the original
@@ -1148,6 +1175,7 @@ static int run_git_commit(const char *defmsg,
author_date_from_env(&cmd.env));
if (opts->ignore_date)
strvec_push(&cmd.env, "GIT_AUTHOR_DATE=");
+ disable_auto_maintenance(opts, &cmd);
strvec_push(&cmd.args, "commit");
@@ -3924,16 +3952,18 @@ static int error_failed_squash(struct repository *r,
return error_with_patch(r, commit, subject, subject_len, opts, 1, 1);
}
-static int do_exec(struct repository *r, const char *command_line, int quiet)
+static int do_exec(struct repository *r, const char *command_line,
+ struct replay_opts *opts)
{
struct child_process cmd = CHILD_PROCESS_INIT;
int dirty, status;
- if (!quiet)
+ if (!opts->quiet)
fprintf(stderr, _("Executing: %s\n"), command_line);
cmd.use_shell = 1;
strvec_push(&cmd.args, command_line);
strvec_push(&cmd.env, "GIT_CHERRY_PICK_HELP");
+ disable_auto_maintenance(opts, &cmd);
status = run_command(&cmd);
/* force re-reading of the cache */
@@ -4342,6 +4372,7 @@ static int do_merge(struct repository *r,
author_date_from_env(&cmd.env));
if (opts->ignore_date)
strvec_push(&cmd.env, "GIT_AUTHOR_DATE=");
+ disable_auto_maintenance(opts, &cmd);
cmd.git_cmd = 1;
strvec_push(&cmd.args, "merge");
@@ -5158,7 +5189,7 @@ static int pick_commits(struct repository *r,
if (!opts->verbose)
term_clear_line();
*end_of_arg = '\0';
- res = do_exec(r, arg, opts->quiet);
+ res = do_exec(r, arg, opts);
*end_of_arg = saved;
if (res) {
@@ -5329,6 +5360,7 @@ static int continue_single_pick(struct repository *r, struct replay_opts *opts)
return error(_("no cherry-pick or revert in progress"));
cmd.git_cmd = 1;
+ disable_auto_maintenance(opts, &cmd);
strvec_push(&cmd.args, "commit");
/*
diff --git a/t/t3418-rebase-continue.sh b/t/t3418-rebase-continue.sh
index 025787b5f2..16def261b0 100755
--- a/t/t3418-rebase-continue.sh
+++ b/t/t3418-rebase-continue.sh
@@ -398,13 +398,18 @@ test_orig_head --merge
test_expect_success 'rebase runs auto maintenance once it is done' '
git checkout -b auto-maintenance topic &&
test_must_fail env GIT_TRACE2_EVENT="$(pwd)/stop.txt" \
- git rebase -x false main &&
+ git rebase -x "git commit --allow-empty -m exec && false" main &&
test_subcommand_flex ! git maintenance run --auto <stop.txt &&
echo resolved >F2 &&
git add F2 &&
- test_must_fail git rebase --continue &&
+ test_must_fail env GIT_TRACE2_EVENT="$(pwd)/mid.txt" \
+ git rebase --continue &&
+ test_subcommand_flex git commit <mid.txt &&
+ test_subcommand_flex ! git maintenance run --auto <mid.txt &&
GIT_TRACE2_EVENT="$(pwd)/end.txt" git rebase --continue &&
- test_subcommand_flex git maintenance run --auto <end.txt
+ test_subcommand_flex git maintenance run --auto <end.txt &&
+ grep "\"child_start\".*\"maintenance\"" end.txt >maintenance &&
+ test_line_count = 1 maintenance
'
test_done
diff --git a/t/t3510-cherry-pick-sequence.sh b/t/t3510-cherry-pick-sequence.sh
index 2bea55c3b6..1e3fa1803c 100755
--- a/t/t3510-cherry-pick-sequence.sh
+++ b/t/t3510-cherry-pick-sequence.sh
@@ -723,8 +723,11 @@ test_expect_success 'commit descriptions in insn sheet are optional' '
test_expect_success 'cherry-pick runs auto maintenance once it is done' '
pristine_detach base &&
- GIT_TRACE2_EVENT="$(pwd)/single.txt" git cherry-pick picked &&
+ GIT_TRACE2_EVENT="$(pwd)/single.txt" git cherry-pick --edit picked &&
+ test_subcommand_flex git commit <single.txt &&
test_subcommand_flex git maintenance run --auto <single.txt &&
+ grep "\"child_start\".*\"maintenance\"" single.txt >maintenance &&
+ test_line_count = 1 maintenance &&
GIT_TRACE2_EVENT="$(pwd)/sequence.txt" \
git cherry-pick anotherpick yetanotherpick &&
test_subcommand_flex git maintenance run --auto <sequence.txt &&
@@ -739,9 +742,14 @@ test_expect_success 'cherry-pick runs auto maintenance once a stopped sequence i
test_subcommand_flex ! git maintenance run --auto <stop.txt &&
echo resolved >foo &&
git add foo &&
- test_must_fail git cherry-pick --continue &&
+ test_must_fail env GIT_TRACE2_EVENT="$(pwd)/mid.txt" \
+ git cherry-pick --continue &&
+ test_subcommand_flex git commit <mid.txt &&
+ test_subcommand_flex ! git maintenance run --auto <mid.txt &&
GIT_TRACE2_EVENT="$(pwd)/end.txt" git cherry-pick --skip &&
- test_subcommand_flex git maintenance run --auto <end.txt
+ test_subcommand_flex git maintenance run --auto <end.txt &&
+ grep "\"child_start\".*\"maintenance\"" end.txt >maintenance &&
+ test_line_count = 1 maintenance
'
test_done
--
gitgitgadget
next prev parent reply other threads:[~2026-09-09 8:25 UTC|newest]
Thread overview: 42+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-09-04 7:53 [PATCH 0/2] sequencer: leave auto maintenance to the end of a rebase Thomas Bachem via GitGitGadget
2026-09-04 7:53 ` [PATCH 1/2] sequencer: run auto maintenance once a rebase is done Thomas Bachem via GitGitGadget
2026-09-04 15:03 ` Phillip Wood
2026-09-04 7:53 ` [PATCH 2/2] sequencer: keep auto maintenance out of the commands a rebase spawns Thomas Bachem via GitGitGadget
2026-09-04 15:03 ` Phillip Wood
2026-09-04 15:55 ` Thomas Bachem
2026-09-04 15:51 ` [PATCH v2 0/3] sequencer: leave auto maintenance to the end of a sequence Thomas Bachem via GitGitGadget
2026-09-04 15:51 ` [PATCH v2 1/3] config: add git_config_append_parameter() Thomas Bachem via GitGitGadget
2026-09-07 8:14 ` Patrick Steinhardt
2026-09-07 13:24 ` Phillip Wood
2026-09-07 14:47 ` Patrick Steinhardt
2026-09-07 16:37 ` Thomas Bachem
2026-09-04 15:51 ` [PATCH v2 2/3] sequencer: run auto maintenance once a sequence is done Thomas Bachem via GitGitGadget
2026-09-07 8:14 ` Patrick Steinhardt
2026-09-07 16:35 ` Thomas Bachem
2026-09-08 5:50 ` Patrick Steinhardt
2026-09-08 7:46 ` Thomas Bachem
2026-09-07 13:25 ` Phillip Wood
2026-09-07 16:36 ` Thomas Bachem
2026-09-07 16:40 ` Phillip Wood
2026-09-04 15:51 ` [PATCH v2 3/3] sequencer: keep auto maintenance out of the commands a sequence spawns Thomas Bachem via GitGitGadget
2026-09-04 21:21 ` Junio C Hamano
2026-09-05 5:42 ` Thomas Bachem
2026-09-07 8:14 ` Patrick Steinhardt
2026-09-07 16:35 ` Thomas Bachem
2026-09-07 13:24 ` Phillip Wood
2026-09-07 16:37 ` Thomas Bachem
2026-09-08 10:28 ` [PATCH v3 0/3] sequencer: leave auto maintenance to the end of a sequence Thomas Bachem via GitGitGadget
2026-09-08 10:28 ` [PATCH v3 1/3] config: add git_config_append_parameter() Thomas Bachem via GitGitGadget
2026-09-08 10:28 ` [PATCH v3 2/3] rebase, cherry-pick, revert: run auto maintenance when done Thomas Bachem via GitGitGadget
2026-09-08 10:28 ` [PATCH v3 3/3] sequencer: disable auto maintenance in spawned commands Thomas Bachem via GitGitGadget
2026-09-08 15:53 ` [PATCH v3 0/3] sequencer: leave auto maintenance to the end of a sequence Junio C Hamano
2026-09-08 19:38 ` Kristoffer Haugsbakk
2026-09-09 5:57 ` Patrick Steinhardt
2026-09-10 8:25 ` Thomas Bachem
2026-09-09 8:25 ` [PATCH v4 " Thomas Bachem via GitGitGadget
2026-09-09 8:25 ` [PATCH v4 1/3] config: add git_config_append_parameter() Thomas Bachem via GitGitGadget
2026-09-11 7:34 ` Patrick Steinhardt
2026-09-09 8:25 ` [PATCH v4 2/3] rebase, cherry-pick, revert: run auto maintenance when done Thomas Bachem via GitGitGadget
2026-09-11 7:34 ` Patrick Steinhardt
2026-09-09 8:25 ` Thomas Bachem via GitGitGadget [this message]
2026-09-09 15:40 ` [PATCH v4 3/3] sequencer: disable auto maintenance in spawned commands Phillip Wood
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=031b3bd498bd5efee7e0d9752a6dd36fe7a55360.1788942331.git.gitgitgadget@gmail.com \
--to=gitgitgadget@gmail.com \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
--cc=johannes.schindelin@gmx.de \
--cc=kristofferhaugsbakk@fastmail.com \
--cc=mail@thomasbachem.com \
--cc=phillip.wood123@gmail.com \
--cc=phillip.wood@dunelm.org.uk \
--cc=ps@pks.im \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox