Re: [PATCH 2/8] revert: decouple sequencer actions from builtin commands
From: Ramkumar Ramachandra <hidden>
Date: 2016-06-15 22:52:46
Jonathan Nieder wrote:
Perhaps cherry-pick and revert should be different values for
replay_subcommand, to avoid conflating the mechanics and the command
name? Resulting in something like this:
enum replay_subcommand {
REPLAY_PICK_REVISIONS,
REPLAY_REVERT_REVISIONS,
REPLAY_EDIT_SEQUENCE,
REPLAY_REMOVE_STATE,
REPLAY_CONTINUE,
REPLAY_SKIP,
REPLAY_ROLLBACK
};We'd be prematurely locking ourselves into a design where we can't tell which top-level command issued the continue/ abort -- this means that there's no way to deny a 'git rebase --continue' from running after a 'git cherry-pick' conflicts (assuming that rebase is implemented in terms of the sequencer ofcourse). Even if that specific objection isn't to your taste, I'm not comfortable about painting ourselves into such a tight corner so early on. My sincere suggestion is to procrastinate the problem until we have a tighter usecase (a new top-level command or action added, for instance). I don't think we have to worry about preserving backward compatibility in the sequencer API? -- Ram