sequencer.hon commit rebase -i: Handle "combination of <n> commits" with GETTEXT_POISON (e12a7ef)
   1#ifndef SEQUENCER_H
   2#define SEQUENCER_H
   3
   4const char *git_path_commit_editmsg(void);
   5const char *git_path_seq_dir(void);
   6
   7#define APPEND_SIGNOFF_DEDUP (1u << 0)
   8
   9enum replay_action {
  10        REPLAY_REVERT,
  11        REPLAY_PICK,
  12        REPLAY_INTERACTIVE_REBASE
  13};
  14
  15enum commit_msg_cleanup_mode {
  16        COMMIT_MSG_CLEANUP_SPACE,
  17        COMMIT_MSG_CLEANUP_NONE,
  18        COMMIT_MSG_CLEANUP_SCISSORS,
  19        COMMIT_MSG_CLEANUP_ALL
  20};
  21
  22struct replay_opts {
  23        enum replay_action action;
  24
  25        /* Boolean options */
  26        int edit;
  27        int record_origin;
  28        int no_commit;
  29        int signoff;
  30        int allow_ff;
  31        int allow_rerere_auto;
  32        int allow_empty;
  33        int allow_empty_message;
  34        int keep_redundant_commits;
  35        int verbose;
  36
  37        int mainline;
  38
  39        char *gpg_sign;
  40        enum commit_msg_cleanup_mode default_msg_cleanup;
  41
  42        /* Merge strategy */
  43        char *strategy;
  44        char **xopts;
  45        size_t xopts_nr, xopts_alloc;
  46
  47        /* Used by fixup/squash */
  48        struct strbuf current_fixups;
  49        int current_fixup_count;
  50
  51        /* Only used by REPLAY_NONE */
  52        struct rev_info *revs;
  53};
  54#define REPLAY_OPTS_INIT { .action = -1, .current_fixups = STRBUF_INIT }
  55
  56/* Call this to setup defaults before parsing command line options */
  57void sequencer_init_config(struct replay_opts *opts);
  58int sequencer_pick_revisions(struct replay_opts *opts);
  59int sequencer_continue(struct replay_opts *opts);
  60int sequencer_rollback(struct replay_opts *opts);
  61int sequencer_remove_state(struct replay_opts *opts);
  62
  63#define TODO_LIST_KEEP_EMPTY (1U << 0)
  64#define TODO_LIST_SHORTEN_IDS (1U << 1)
  65#define TODO_LIST_ABBREVIATE_CMDS (1U << 2)
  66int sequencer_make_script(FILE *out, int argc, const char **argv,
  67                          unsigned flags);
  68
  69int sequencer_add_exec_commands(const char *command);
  70int transform_todos(unsigned flags);
  71int check_todo_list(void);
  72int skip_unnecessary_picks(void);
  73int rearrange_squash(void);
  74
  75extern const char sign_off_header[];
  76
  77void append_signoff(struct strbuf *msgbuf, int ignore_footer, unsigned flag);
  78void append_conflicts_hint(struct strbuf *msgbuf);
  79int message_is_empty(const struct strbuf *sb,
  80                     enum commit_msg_cleanup_mode cleanup_mode);
  81int template_untouched(const struct strbuf *sb, const char *template_file,
  82                       enum commit_msg_cleanup_mode cleanup_mode);
  83int update_head_with_reflog(const struct commit *old_head,
  84                            const struct object_id *new_head,
  85                            const char *action, const struct strbuf *msg,
  86                            struct strbuf *err);
  87void commit_post_rewrite(const struct commit *current_head,
  88                         const struct object_id *new_head);
  89
  90#define SUMMARY_INITIAL_COMMIT   (1 << 0)
  91#define SUMMARY_SHOW_AUTHOR_DATE (1 << 1)
  92void print_commit_summary(const char *prefix, const struct object_id *oid,
  93                          unsigned int flags);
  94#endif