]> git.ipfire.org Git - thirdparty/git.git/blame - sequencer.h
t5318: avoid unnecessary command substitutions
[thirdparty/git.git] / sequencer.h
CommitLineData
26ae337b
RR
1#ifndef SEQUENCER_H
2#define SEQUENCER_H
3
66618a50 4const char *git_path_commit_editmsg(void);
8a2a0f53 5const char *git_path_seq_dir(void);
26ae337b 6
bab4d109
BC
7#define APPEND_SIGNOFF_DEDUP (1u << 0)
8
043a4492
RR
9enum replay_action {
10 REPLAY_REVERT,
84583957
JS
11 REPLAY_PICK,
12 REPLAY_INTERACTIVE_REBASE
043a4492
RR
13};
14
28d6daed
PW
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
043a4492
RR
22struct replay_opts {
23 enum replay_action action;
043a4492
RR
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;
df478b74 32 int allow_empty;
4bee9584 33 int allow_empty_message;
b27cfb0d 34 int keep_redundant_commits;
556907f1 35 int verbose;
043a4492
RR
36
37 int mainline;
38
03a4e260 39 char *gpg_sign;
28d6daed 40 enum commit_msg_cleanup_mode default_msg_cleanup;
3253553e 41
043a4492 42 /* Merge strategy */
03a4e260
JS
43 char *strategy;
44 char **xopts;
043a4492
RR
45 size_t xopts_nr, xopts_alloc;
46
e12a7ef5
JS
47 /* Used by fixup/squash */
48 struct strbuf current_fixups;
49 int current_fixup_count;
50
d87d48b2
JS
51 /* placeholder commit for -i --root */
52 struct object_id squash_onto;
53 int have_squash_onto;
54
043a4492
RR
55 /* Only used by REPLAY_NONE */
56 struct rev_info *revs;
57};
e12a7ef5 58#define REPLAY_OPTS_INIT { .action = -1, .current_fixups = STRBUF_INIT }
043a4492 59
28d6daed
PW
60/* Call this to setup defaults before parsing command line options */
61void sequencer_init_config(struct replay_opts *opts);
043a4492 62int sequencer_pick_revisions(struct replay_opts *opts);
2863584f
JS
63int sequencer_continue(struct replay_opts *opts);
64int sequencer_rollback(struct replay_opts *opts);
65int sequencer_remove_state(struct replay_opts *opts);
043a4492 66
313a48ea
LB
67#define TODO_LIST_KEEP_EMPTY (1U << 0)
68#define TODO_LIST_SHORTEN_IDS (1U << 1)
d8ae6c84 69#define TODO_LIST_ABBREVIATE_CMDS (1U << 2)
1644c73c 70#define TODO_LIST_REBASE_MERGES (1U << 3)
7543f6f4
JS
71/*
72 * When rebasing merges, commits that do have the base commit as ancestor
73 * ("cousins") are *not* rebased onto the new base by default. If those
74 * commits should be rebased onto the new base, this flag needs to be passed.
75 */
76#define TODO_LIST_REBASE_COUSINS (1U << 4)
313a48ea
LB
77int sequencer_make_script(FILE *out, int argc, const char **argv,
78 unsigned flags);
62db5247 79
0cce4a27 80int sequencer_add_exec_commands(const char *command);
313a48ea 81int transform_todos(unsigned flags);
94399949 82int check_todo_list(void);
cdac2b01 83int skip_unnecessary_picks(void);
c44a4c65 84int rearrange_squash(void);
3546c8d9 85
5ed75e2a
MV
86extern const char sign_off_header[];
87
bab4d109 88void append_signoff(struct strbuf *msgbuf, int ignore_footer, unsigned flag);
75c961b7 89void append_conflicts_hint(struct strbuf *msgbuf);
d0aaa46f
PW
90int message_is_empty(const struct strbuf *sb,
91 enum commit_msg_cleanup_mode cleanup_mode);
92int template_untouched(const struct strbuf *sb, const char *template_file,
93 enum commit_msg_cleanup_mode cleanup_mode);
0505d604
PW
94int update_head_with_reflog(const struct commit *old_head,
95 const struct object_id *new_head,
96 const char *action, const struct strbuf *msg,
97 struct strbuf *err);
a87a6f3c
PW
98void commit_post_rewrite(const struct commit *current_head,
99 const struct object_id *new_head);
5ed75e2a 100
e47c6caf
PW
101#define SUMMARY_INITIAL_COMMIT (1 << 0)
102#define SUMMARY_SHOW_AUTHOR_DATE (1 << 1)
103void print_commit_summary(const char *prefix, const struct object_id *oid,
104 unsigned int flags);
26ae337b 105#endif