diff options
author | Alban Gruin <alban.gruin@gmail.com> | 2019-03-05 20:18:03 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-03-07 09:17:57 +0900 |
commit | a930eb03a8299b5b29284dd9e3c253c38187167a (patch) | |
tree | 701fad4abf3ec0445d84a33158c85bf61d0d3ea0 /sequencer.h | |
parent | af1fc3adc5bf0d831ee3c1c8e86c1b7ce59e070e (diff) | |
download | git-a930eb03a8299b5b29284dd9e3c253c38187167a.tar.gz |
rebase-interactive: rewrite edit_todo_list() to handle the initial edit
edit_todo_list() is changed to work on a todo_list, and to handle the
initial edition of the todo list (ie. making a backup of the todo
list).
It does not check for dropped commits yet, as todo_list_check() does not
take the commits that have already been processed by the rebase (ie. the
todo list is edited in the middle of a rebase session).
Signed-off-by: Alban Gruin <alban.gruin@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 fb31a30d15..195891a267 100644 --- a/sequencer.h +++ b/sequencer.h @@ -10,6 +10,7 @@ struct repository; const char *git_path_commit_editmsg(void); const char *git_path_seq_dir(void); const char *rebase_path_todo(void); +const char *rebase_path_todo_backup(void); #define APPEND_SIGNOFF_DEDUP (1u << 0) |