On Wed, May 17, 2023 at 01:13:28PM +0100, Phillip Wood wrote:
On 26/04/2023 16:34, Oswald Buddenhagen wrote:
the failed state is identical to the "still editing the initial todo"
state as far as "git status" and the shell prompt are concerned. this
seems reasonable. i'll add it to the commit message.
When you do that please mention what "git status" and the shell prompt
actually print in this case.
i'll go with "This seems reasonable, irrespective of the actual
presentation (which could be improved)".
Ideally "git status" should mention that the todo list needs to be
edited if there are still errors in it, though it would not surprise me
if it is not that helpful at the moment.
that would require actually validating the todo instead of just printing
it. or maybe the presence of the backup file could be used to make
reliable inferences. have fun! ;)
- Previously if the user created a commit before running "rebase
--continue" we'd rebase on to that commit. Now that commit will be
silently dropped.
this is arguably a problem, but not much different from the pre-existing
behavior of changes to HEAD done during the initial todo edit being lost.
I think there is a significant difference in that we're moving from a
situation where we lose commits that are created while rebase is running
to one where we're losing commits created while rebase is stopped. If a
user tries to create a commit while rebase is running then they're
asking for trouble. I don't think creating commits when rebase is
stopped is unreasonable in the same way.
i think that this is a completely meaningless distinction. a rebase is
"running" while the state directory exists. having multiple terminals
open is the norm, and when havoc ensues it doesn't matter to the user
whether one of the terminals had an editor launched by git open at the
time.
to avoid that, we'd need to lock HEAD while editing the todo. is that
realistic at all?
I don't think it is practical to lock HEAD while git is not running.
what measure of "practical" are you applying?
i'm assuming that no persistent locking infra exists currently. but i
don't see a reason why it _couldn't_ - having some functions to populate
and query .git/locked-refs/** in the right places doesn't seem like a
fundamentally hard problem.
We could just check HEAD has not changed when the rebase continues
after the user has fixed the todo list as you suggest below.
that's a good safeguard which i intend to implement, but when it
triggers, the user will have to deal with the conflict. it would be much
nicer to avoid it in the first place.
on top of that, i should verify HEAD against orig-head in
start_rebase(). though the only way for the user to get out of that
situation is saving the todo contents and --abort'ing (and we must
take care not the touch HEAD).
I think in that case it wouldn't be terrible to lose the edited todo
list as it is a bit of a corner case.
actually, yes, it would be. that's why i posted a patch that avoids it.
this is somewhat similar to the abysmal situation of the final
update-ref failing if the target ref has been modified while being
rebased. we'd need to lock that ref for the entire duration of the
rebase to avoid that.
"abysmal" is rather harsh - it would also be bad to overwrite the ref in
that case. I think it in relatively hard to get into that situation
though as "git checkout" wont checkout a branch that is being updated by
a rebase.
i have no clue how it happened (certainly something to do with many open
terminals), but i actually got into that situation shortly before
writing that mail, and i assure you that "abysmal" is absolutely not an
overstatement. i mean, what do you expect a user to think when presented
with two diverging heads when trying to finish a rebase?
- Previously if the user checkout out another commit before running
"rebase --continue" we'd rebase on to that commit. Now we we rebase
on to the original "onto" commit.
this can be subsumed into the above case.
Meaning check and error out if HEAD has changed?
yes
> This makes aborting cheaper and will simplify
> things in a later change.
Given that we're stopping so the user can fix the problem and continue
the rebase I don't think optimizing for aborting is a convincing
reason for this change on its own.
this is all part of the "More or less as a side effect" paragraph, so
this isn't a relevant objection.
I'm simply saying that we should not be optimizing for "rebase --abort"
in this case. Do you think we should?
you're missing the point. the optimization isn't something anyone aimed
for.
regards