4 #define SEQ_DIR "sequencer"
5 #define SEQ_HEAD_FILE "sequencer/head"
6 #define SEQ_TODO_FILE "sequencer/todo"
7 #define SEQ_OPTS_FILE "sequencer/opts"
8 #define SEQ_REWR_FILE "sequencer/rewritten"
10 #define APPEND_SIGNOFF_DEDUP (1u << 0)
17 enum replay_subcommand {
26 enum replay_action action;
27 enum replay_subcommand subcommand;
35 int allow_rerere_auto;
37 int allow_empty_message;
38 int keep_redundant_commits;
47 size_t xopts_nr, xopts_alloc;
49 /* Only used by REPLAY_NONE */
50 struct rev_info *revs;
52 const char *action_name;
55 int sequencer_pick_revisions(struct replay_opts *opts);
57 extern const char sign_off_header[];
59 void append_signoff(struct strbuf *msgbuf, int ignore_footer, unsigned flag);