rebase -r: do not (re-)generate root commits with `--root` *and* `--onto`
[gitweb.git] / sequencer.h
index 0c494b83d43e2c0d71822a23dd274176fe743490..d506081d3c8656d0b290f0b39492271dbb0917f0 100644 (file)
@@ -142,6 +142,12 @@ int sequencer_remove_state(struct replay_opts *opts);
  */
 #define TODO_LIST_REBASE_COUSINS (1U << 4)
 #define TODO_LIST_APPEND_TODO_HELP (1U << 5)
+/*
+ * When generating a script that rebases merges with `--root` *and* with
+ * `--onto`, we do not want to re-generate the root commits.
+ */
+#define TODO_LIST_ROOT_WITH_ONTO (1U << 6)
+
 
 int sequencer_make_script(struct repository *r, struct strbuf *out, int argc,
                          const char **argv, unsigned flags);