mirror of
https://github.com/git/git.git
synced 2024-10-31 22:37:54 +01:00
91f0d95dcb
This removes the modes `--skip-unnecessary-picks`, `--append-todo-help`, and `--checkout-onto` from rebase--helper.c, the functions of git-rebase--interactive.sh that were rendered useless by the rewrite of complete_action(), and append_todo_help_to_file() from rebase-interactive.c. skip_unnecessary_picks() and checkout_onto() becomes static, as they are only used inside of the sequencer. Signed-off-by: Alban Gruin <alban.gruin@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
8 lines
195 B
C
8 lines
195 B
C
#ifndef REBASE_INTERACTIVE_H
|
|
#define REBASE_INTERACTIVE_H
|
|
|
|
void append_todo_help(unsigned edit_todo, unsigned keep_empty,
|
|
struct strbuf *buf);
|
|
int edit_todo_list(unsigned flags);
|
|
|
|
#endif
|