From: Phillip Wood <phillip.wood123@gmail.com>
To: Siddharth Asthana <siddharthasthana31@gmail.com>, git@vger.kernel.org
Cc: christian.couder@gmail.com, ps@pks.im, newren@gmail.com,
gitster@pobox.com, karthik.188@gmail.com,
johannes.schindelin@gmx.de, toon@iotcl.com
Subject: Re: [PATCH v4 2/2] replay: add --revert mode to reverse commit changes
Date: Mon, 16 Mar 2026 16:57:52 +0000 [thread overview]
Message-ID: <f18f9bb4-4c30-4972-a034-a74b81a3e1e6@gmail.com> (raw)
In-Reply-To: <20260313054035.26605-3-siddharthasthana31@gmail.com>
Hi Siddharth
On 13/03/2026 05:40, Siddharth Asthana wrote:
> Add a `--revert <branch>` mode to git replay that undoes the changes
> introduced by the specified commits. Like --onto and --advance, --revert
> is a standalone mode: it takes a branch argument and updates that branch
> with the newly created revert commits.
>
> At GitLab, we need this in Gitaly for reverting commits directly on bare
> repositories without requiring a working tree checkout.
>
> The approach is the same as sequencer.c's do_pick_commit() -- cherry-pick
> and revert are just the same three-way merge with swapped arguments:
>
> - Cherry-pick: merge(ancestor=parent, ours=current, theirs=commit)
> - Revert: merge(ancestor=commit, ours=current, theirs=parent)
>
> We swap the base and pickme trees passed to merge_incore_nonrecursive()
> to reverse the diff direction.
>
> Reverts are processed newest-first (matching git revert behavior) to
> reduce conflicts by peeling off changes from the top. Each revert
> builds on the result of the previous one via the last_commit fallback
> in the main replay loop, rather than relying on the parent-mapping
> used for cherry-pick.
>
> Revert commit messages follow the usual git revert conventions: prefixed
> with "Revert" (or "Reapply" when reverting a revert), and including
> "This reverts commit <hash>.". The author is set to the current user
> rather than preserving the original author, matching git revert behavior.
This addresses all my comments on the previous version. I've one minor
comment below but I'm not sure its worth a re-roll on its own.
>
> test_expect_success 'cannot advance target ... ordering would be ill-defined' '
> - echo "fatal: cannot advance target with multiple sources because ordering would be ill-defined" >expect &&
> + cat >expect <<-\EOF &&
> + fatal: '"'"'--advance'"'"' cannot be used with multiple revision ranges because the ordering would be ill-defined
This quoting is a bit strange - we'd normally drop the '\' form '\EOF'
above use ${SQ} instead. git grep shows there are 220 instances of ${SQ}
vs 31 instances of '"'"' in the test suite.
Thanks
Phillip
> + EOF
> test_must_fail git replay --advance=main main topic1 topic2 2>actual &&
> test_cmp expect actual
> '
> @@ -398,4 +399,105 @@ test_expect_success 'invalid replay.refAction value' '
> test_grep "invalid.*replay.refAction.*value" error
> '
>
> +test_expect_success 'argument to --revert must be a reference' '
> + echo "fatal: argument to --revert must be a reference" >expect &&
> + oid=$(git rev-parse main) &&
> + test_must_fail git replay --revert=$oid topic1..topic2 2>actual &&
> + test_cmp expect actual
> +'
> +
> +test_expect_success 'cannot revert with multiple sources' '
> + cat >expect <<-\EOF &&
> + fatal: '"'"'--revert'"'"' cannot be used with multiple revision ranges because the ordering would be ill-defined
> + EOF
> + test_must_fail git replay --revert main main topic1 topic2 2>actual &&
> + test_cmp expect actual
> +'
> +
> +test_expect_success 'using replay --revert to revert commits' '
> + # Reuse existing topic4 branch (has commits I and J on top of main)
> + START=$(git rev-parse topic4) &&
> + test_when_finished "git branch -f topic4 $START" &&
> +
> + # Revert commits I and J
> + git replay --revert topic4 topic4~2..topic4 &&
> +
> + # Verify the revert commits were created (newest-first ordering
> + # means J is reverted first, then I on top)
> + git log --format=%s -4 topic4 >actual &&
> + cat >expect <<-\EOF &&
> + Revert "I"
> + Revert "J"
> + J
> + I
> + EOF
> + test_cmp expect actual &&
> +
> + # Verify commit message format includes hash (tip is Revert "I")
> + test_commit_message topic4 <<-EOF &&
> + Revert "I"
> +
> + This reverts commit $(git rev-parse I).
> + EOF
> +
> + # Verify reflog message
> + git reflog topic4 -1 --format=%gs >reflog-msg &&
> + echo "replay --revert topic4" >expect-reflog &&
> + test_cmp expect-reflog reflog-msg
> +'
> +
> +test_expect_success 'using replay --revert in bare repo' '
> + # Reuse existing topic4 in bare repo
> + START=$(git -C bare rev-parse topic4) &&
> + test_when_finished "git -C bare update-ref refs/heads/topic4 $START" &&
> +
> + # Revert commit J in bare repo
> + git -C bare replay --revert topic4 topic4~1..topic4 &&
> +
> + # Verify revert was created
> + git -C bare log -1 --format=%s topic4 >actual &&
> + echo "Revert \"J\"" >expect &&
> + test_cmp expect actual
> +'
> +
> +test_expect_success 'revert of revert uses Reapply' '
> + # Use topic4 and first revert J, then revert the revert
> + START=$(git rev-parse topic4) &&
> + test_when_finished "git branch -f topic4 $START" &&
> +
> + # First revert J
> + git replay --revert topic4 topic4~1..topic4 &&
> + REVERT_J=$(git rev-parse topic4) &&
> +
> + # Now revert the revert - should become Reapply
> + git replay --revert topic4 topic4~1..topic4 &&
> +
> + # Verify Reapply prefix and message format
> + test_commit_message topic4 <<-EOF
> + Reapply "J"
> +
> + This reverts commit $REVERT_J.
> + EOF
> +'
> +
> +test_expect_success 'git replay --revert with conflict' '
> + # conflict branch has C.conflict which conflicts with topic1s C
> + test_expect_code 1 git replay --revert conflict B..topic1
> +'
> +
> +test_expect_success 'git replay --revert incompatible with --contained' '
> + test_must_fail git replay --revert topic4 --contained topic4~1..topic4 2>error &&
> + test_grep "requires --onto" error
> +'
> +
> +test_expect_success 'git replay --revert incompatible with --onto' '
> + test_must_fail git replay --revert topic4 --onto main topic4~1..topic4 2>error &&
> + test_grep "cannot be used together" error
> +'
> +
> +test_expect_success 'git replay --revert incompatible with --advance' '
> + test_must_fail git replay --revert topic4 --advance main topic4~1..topic4 2>error &&
> + test_grep "cannot be used together" error
> +'
> +
> test_done
next prev parent reply other threads:[~2026-03-16 16:57 UTC|newest]
Thread overview: 92+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-11-25 17:00 [PATCH 0/1] replay: add --revert option to reverse commit changes Siddharth Asthana
2025-11-25 17:00 ` [PATCH 1/1] " Siddharth Asthana
2025-11-25 19:22 ` Junio C Hamano
2025-11-25 19:30 ` Junio C Hamano
2025-11-25 19:39 ` Junio C Hamano
2025-11-25 20:06 ` Junio C Hamano
2025-11-26 19:31 ` Siddharth Asthana
2025-11-26 19:28 ` Siddharth Asthana
2025-11-26 19:26 ` Siddharth Asthana
2025-11-26 21:13 ` Junio C Hamano
2025-11-27 19:23 ` Siddharth Asthana
2025-11-26 11:10 ` Phillip Wood
2025-11-26 17:35 ` Elijah Newren
2025-11-26 18:41 ` Junio C Hamano
2025-11-26 21:17 ` Junio C Hamano
2025-11-26 23:06 ` Elijah Newren
2025-11-26 23:14 ` Junio C Hamano
2025-11-26 23:57 ` Elijah Newren
2025-11-26 19:50 ` Siddharth Asthana
2025-11-26 19:39 ` Siddharth Asthana
2025-11-27 16:21 ` Phillip Wood
2025-11-27 19:24 ` Siddharth Asthana
2025-11-25 17:25 ` [PATCH 0/1] " Johannes Schindelin
2025-11-25 18:02 ` Junio C Hamano
2025-11-26 19:18 ` Siddharth Asthana
2025-11-26 21:04 ` Junio C Hamano
2025-11-27 19:21 ` Siddharth Asthana
2025-11-27 20:17 ` Junio C Hamano
2025-11-28 8:07 ` Elijah Newren
2025-11-28 8:24 ` Siddharth Asthana
2025-11-28 16:35 ` Junio C Hamano
2025-11-28 17:07 ` Elijah Newren
2025-11-28 20:50 ` Junio C Hamano
2025-11-28 22:03 ` Elijah Newren
2025-11-29 5:59 ` Junio C Hamano
2025-12-02 20:16 ` [PATCH v2 0/2] replay: add --revert mode " Siddharth Asthana
2025-12-02 20:16 ` [PATCH v2 1/2] sequencer: extract revert message formatting into shared function Siddharth Asthana
2025-12-05 11:33 ` Patrick Steinhardt
2025-12-07 23:00 ` Siddharth Asthana
2025-12-08 7:07 ` Patrick Steinhardt
2026-02-11 13:03 ` Toon Claes
2026-02-11 13:40 ` Patrick Steinhardt
2026-02-11 15:23 ` Kristoffer Haugsbakk
2026-02-11 17:41 ` Junio C Hamano
2026-02-18 22:53 ` Siddharth Asthana
2025-12-02 20:16 ` [PATCH v2 2/2] replay: add --revert mode to reverse commit changes Siddharth Asthana
2025-12-05 11:33 ` Patrick Steinhardt
2025-12-07 23:03 ` Siddharth Asthana
2025-12-16 16:23 ` Phillip Wood
2026-02-18 23:42 ` [PATCH v3 0/2] " Siddharth Asthana
2026-02-18 23:42 ` [PATCH v3 1/2] sequencer: extract revert message formatting into shared function Siddharth Asthana
2026-02-20 17:01 ` Toon Claes
2026-02-25 21:53 ` Junio C Hamano
2026-03-06 4:55 ` Siddharth Asthana
2026-03-06 4:31 ` Siddharth Asthana
2026-02-26 14:27 ` Phillip Wood
2026-03-06 5:00 ` Siddharth Asthana
2026-02-18 23:42 ` [PATCH v3 2/2] replay: add --revert mode to reverse commit changes Siddharth Asthana
2026-02-20 17:35 ` Toon Claes
2026-02-20 20:23 ` Junio C Hamano
2026-02-23 9:13 ` Christian Couder
2026-02-23 11:23 ` Toon Claes
2026-03-06 5:05 ` Siddharth Asthana
2026-02-26 14:45 ` Phillip Wood
2026-03-06 5:28 ` Siddharth Asthana
2026-03-06 15:52 ` Phillip Wood
2026-03-06 16:20 ` Siddharth Asthana
2026-03-13 5:40 ` [PATCH v4 0/2] " Siddharth Asthana
2026-03-13 5:40 ` [PATCH v4 1/2] sequencer: extract revert message formatting into shared function Siddharth Asthana
2026-03-13 15:53 ` Junio C Hamano
2026-03-16 19:12 ` Toon Claes
2026-03-16 16:57 ` Phillip Wood
2026-03-13 5:40 ` [PATCH v4 2/2] replay: add --revert mode to reverse commit changes Siddharth Asthana
2026-03-16 16:57 ` Phillip Wood [this message]
2026-03-16 19:52 ` Toon Claes
2026-03-17 10:11 ` Phillip Wood
2026-03-16 16:59 ` [PATCH v4 0/2] " Phillip Wood
2026-03-16 19:53 ` Toon Claes
2026-03-24 22:03 ` [PATCH v5 " Siddharth Asthana
2026-03-24 22:04 ` [PATCH v5 1/2] sequencer: extract revert message formatting into shared function Siddharth Asthana
2026-03-24 22:04 ` [PATCH v5 2/2] replay: add --revert mode to reverse commit changes Siddharth Asthana
2026-03-25 6:29 ` Junio C Hamano
2026-03-25 15:10 ` Toon Claes
2026-03-25 15:38 ` Siddharth Asthana
2026-03-25 16:44 ` Phillip Wood
2026-03-25 15:36 ` Siddharth Asthana
2026-03-25 20:23 ` [PATCH v6 0/2] " Siddharth Asthana
2026-03-25 20:23 ` [PATCH v6 1/2] sequencer: extract revert message formatting into shared function Siddharth Asthana
2026-03-25 20:23 ` [PATCH v6 2/2] replay: add --revert mode to reverse commit changes Siddharth Asthana
2026-03-28 4:33 ` Tian Yuchen
2026-03-25 20:23 ` [PATCH v6 1/2] sequencer: extract revert message formatting into shared function Siddharth Asthana
2026-03-25 20:23 ` [PATCH v6 2/2] replay: add --revert mode to reverse commit changes Siddharth Asthana
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=f18f9bb4-4c30-4972-a034-a74b81a3e1e6@gmail.com \
--to=phillip.wood123@gmail.com \
--cc=christian.couder@gmail.com \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
--cc=johannes.schindelin@gmx.de \
--cc=karthik.188@gmail.com \
--cc=newren@gmail.com \
--cc=phillip.wood@dunelm.org.uk \
--cc=ps@pks.im \
--cc=siddharthasthana31@gmail.com \
--cc=toon@iotcl.com \
/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