aboutsummaryrefslogtreecommitdiff
path: root/sequencer.h
diff options
context:
space:
mode:
authorJohannes Schindelin <johannes.schindelin@gmx.de>2017-01-02 16:26:28 +0100
committerJunio C Hamano <gitster@pobox.com>2017-01-09 14:57:29 -0800
commit845839575d37da825746816b24376c7799ef1105 (patch)
tree9a840bd39a03bf4b9c2abecd9ed86e27ebcec49a /sequencer.h
parent23aa51420cca7bee854f54e970206c00f3be0c86 (diff)
downloadgit-845839575d37da825746816b24376c7799ef1105.tar.gz
git-845839575d37da825746816b24376c7799ef1105.tar.xz
sequencer: support a new action: 'interactive rebase'
This patch introduces a new action for the sequencer. It really does not do a whole lot of its own right now, but lays the ground work for patches to come. The intention, of course, is to finally make the sequencer the work horse of the interactive rebase (the original idea behind the "sequencer" concept). Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'sequencer.h')
-rw-r--r--sequencer.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/sequencer.h b/sequencer.h
index 7a513c576..cb21cfdde 100644
--- a/sequencer.h
+++ b/sequencer.h
@@ -7,7 +7,8 @@ const char *git_path_seq_dir(void);
enum replay_action {
REPLAY_REVERT,
- REPLAY_PICK
+ REPLAY_PICK,
+ REPLAY_INTERACTIVE_REBASE
};
struct replay_opts {