Continuing operations after resolving conflicts? #406
|
I have a patch series that looks like this: I want to move It seems the whole float operation just stops here. Is there anything similar to |
Replies: 1 comment 5 replies
|
You are not missing anything. StGit does not have the concept of stateful resumption of its stack manipulation commands like git does with Should it though? I don't know, maybe. This would seem to affect I've personally always been wary of git's resumable commands, so I've not had a desire to have a similar mode of operation in StGit. I think such a feature would need a champion other than myself. |
You are not missing anything. StGit does not have the concept of stateful resumption of its stack manipulation commands like git does with
git rebase --continue.Should it though? I don't know, maybe.
This would seem to affect
goto,float,push(when multiple patches are provided),sink,pick(when picking multiple patches),delete,pull, andrebasecommands. Would there be a general purpose command to resume whichever of those was interrupted by merge conflict resolution? Or would each command have it's own--continueflag? And how/where would StGit retain the state needed to resume?I've personally always been wary of git's resumable commands, so I've not had a desire to have a similar …