Every once in a while it makes sense to create a fixup to an existing commit, e.g.,
git commit --interactive --fixup=HEAD~2
and send that out as reply to the original series (similiar to what git send-email would have done with its --in-reply-to option).
Maybe something along the lines
b4 send --fixup --in-reply-to=https://lore.kernel.org/all/msgid/T
that rolls a patch from HEAD and sends it out?
(Or, even more luxury:
scans the current topic for fixup commits and sends them out as reply to each mail (subject must match to make this possible).
No idea whether or how this could work, though!)
Every once in a while it makes sense to create a fixup to an existing commit, e.g.,
and send that out as reply to the original series (similiar to what git send-email would have done with its
--in-reply-tooption).Maybe something along the lines
that rolls a patch from HEAD and sends it out?
(Or, even more luxury:
scans the current topic for fixup commits and sends them out as reply to each mail (subject must match to make this possible).
No idea whether or how this could work, though!)