summaryrefslogtreecommitdiff
path: root/rebase-interactive.c
diff options
context:
space:
mode:
authorAlban Gruin <alban.gruin@gmail.com>2018-08-28 12:10:37 (GMT)
committerJunio C Hamano <gitster@pobox.com>2018-08-29 20:38:18 (GMT)
commit91f0d95dcb4dd9c388881b64a7d79a3809927126 (patch)
tree99231e8e11e68ff2df058afeb07237c2e6ede186 /rebase-interactive.c
parentb97e187364990fb8410355ff8b4365d0e37bbbbe (diff)
downloadgit-91f0d95dcb4dd9c388881b64a7d79a3809927126.zip
git-91f0d95dcb4dd9c388881b64a7d79a3809927126.tar.gz
git-91f0d95dcb4dd9c388881b64a7d79a3809927126.tar.bz2
rebase -i: remove unused modes and functions
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>
Diffstat (limited to 'rebase-interactive.c')
-rw-r--r--rebase-interactive.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/rebase-interactive.c b/rebase-interactive.c
index 4a9a10e..0f4119c 100644
--- a/rebase-interactive.c
+++ b/rebase-interactive.c
@@ -52,28 +52,6 @@ void append_todo_help(unsigned edit_todo, unsigned keep_empty,
}
}
-int append_todo_help_to_file(unsigned edit_todo, unsigned keep_empty)
-{
- struct strbuf buf = STRBUF_INIT;
- FILE *todo;
- int ret;
-
- todo = fopen_or_warn(rebase_path_todo(), "a");
- if (!todo)
- return -1;
-
- append_todo_help(edit_todo, keep_empty, &buf);
-
- ret = fputs(buf.buf, todo);
- if (ret < 0)
- error_errno(_("could not append help text to '%s'"), rebase_path_todo());
-
- fclose(todo);
- strbuf_release(&buf);
-
- return ret;
-}
-
int edit_todo_list(unsigned flags)
{
struct strbuf buf = STRBUF_INIT;