diff options
author | Liam Beguin <liambeguin@gmail.com> | 2017-12-05 12:52:33 -0500 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-12-05 10:20:51 -0800 |
commit | 0cce4a2756eb2c66544615e5ccd74671afb33256 (patch) | |
tree | 5165b7868b62a88b7f26a58efe90993c2520f9c1 /sequencer.h | |
parent | 313a48eaca58ecd170bef9e6a5a55001c7511f08 (diff) | |
download | git-0cce4a2756eb2c66544615e5ccd74671afb33256.tar.gz |
rebase -i -x: add exec commands via the rebase--helper
Recent work on `git-rebase--interactive` aims to convert shell code to
C. Even if this is most likely not a big performance enhancement, let's
convert it too since a coming change to abbreviate command names
requires it to be updated.
Signed-off-by: Liam Beguin <liambeguin@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'sequencer.h')
-rw-r--r-- | sequencer.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sequencer.h b/sequencer.h index 68284e9762..212426c445 100644 --- a/sequencer.h +++ b/sequencer.h @@ -50,6 +50,7 @@ int sequencer_remove_state(struct replay_opts *opts); int sequencer_make_script(FILE *out, int argc, const char **argv, unsigned flags); +int sequencer_add_exec_commands(const char *command); int transform_todos(unsigned flags); int check_todo_list(void); int skip_unnecessary_picks(void); |