diff options
author | Johannes Schindelin <johannes.schindelin@gmx.de> | 2017-07-14 16:45:21 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-07-28 00:35:05 +0200 |
commit | 943999493fd4084d00bd5b5decc85b68eb64785f (patch) | |
tree | 20b613c01d4b531a8a5a88e122d84206e1da975a /sequencer.h | |
parent | t3404: relax rebase.missingCommitsCheck tests (diff) | |
download | git-943999493fd4084d00bd5b5decc85b68eb64785f.tar.xz git-943999493fd4084d00bd5b5decc85b68eb64785f.zip |
rebase -i: check for missing commits in the rebase--helper
In particular on Windows, where shell scripts are even more expensive
than on MacOSX or Linux, it makes sense to move a loop that forks
Git at least once for every line in the todo list into a builtin.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
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 71d25374af..878dd296f8 100644 --- a/sequencer.h +++ b/sequencer.h @@ -49,6 +49,7 @@ int sequencer_make_script(int keep_empty, FILE *out, int argc, const char **argv); int transform_todo_ids(int shorten_ids); +int check_todo_list(void); extern const char sign_off_header[]; |