4 const char *git_path_seq_dir(void);
6 #define APPEND_SIGNOFF_DEDUP (1u << 0)
14 enum replay_action action
;
22 int allow_rerere_auto
;
24 int allow_empty_message
;
25 int keep_redundant_commits
;
34 size_t xopts_nr
, xopts_alloc
;
36 /* Only used by REPLAY_NONE */
37 struct rev_info
*revs
;
39 #define REPLAY_OPTS_INIT { -1 }
41 int sequencer_pick_revisions(struct replay_opts
*opts
);
42 int sequencer_continue(struct replay_opts
*opts
);
43 int sequencer_rollback(struct replay_opts
*opts
);
44 int sequencer_remove_state(struct replay_opts
*opts
);
46 extern const char sign_off_header
[];
48 void append_signoff(struct strbuf
*msgbuf
, int ignore_footer
, unsigned flag
);
49 void append_conflicts_hint(struct strbuf
*msgbuf
);