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>
This commit is contained in:
parent
b97e187364
commit
91f0d95dcb
@ -17,9 +17,8 @@ int cmd_rebase__helper(int argc, const char **argv, const char *prefix)
|
|||||||
int abbreviate_commands = 0, rebase_cousins = -1;
|
int abbreviate_commands = 0, rebase_cousins = -1;
|
||||||
enum {
|
enum {
|
||||||
CONTINUE = 1, ABORT, MAKE_SCRIPT, SHORTEN_OIDS, EXPAND_OIDS,
|
CONTINUE = 1, ABORT, MAKE_SCRIPT, SHORTEN_OIDS, EXPAND_OIDS,
|
||||||
CHECK_TODO_LIST, SKIP_UNNECESSARY_PICKS, REARRANGE_SQUASH,
|
CHECK_TODO_LIST, REARRANGE_SQUASH, ADD_EXEC, EDIT_TODO, PREPARE_BRANCH,
|
||||||
ADD_EXEC, APPEND_TODO_HELP, EDIT_TODO, PREPARE_BRANCH,
|
COMPLETE_ACTION
|
||||||
CHECKOUT_ONTO, COMPLETE_ACTION
|
|
||||||
} command = 0;
|
} command = 0;
|
||||||
struct option options[] = {
|
struct option options[] = {
|
||||||
OPT_BOOL(0, "ff", &opts.allow_ff, N_("allow fast-forward")),
|
OPT_BOOL(0, "ff", &opts.allow_ff, N_("allow fast-forward")),
|
||||||
@ -44,21 +43,15 @@ int cmd_rebase__helper(int argc, const char **argv, const char *prefix)
|
|||||||
N_("expand commit ids in the todo list"), EXPAND_OIDS),
|
N_("expand commit ids in the todo list"), EXPAND_OIDS),
|
||||||
OPT_CMDMODE(0, "check-todo-list", &command,
|
OPT_CMDMODE(0, "check-todo-list", &command,
|
||||||
N_("check the todo list"), CHECK_TODO_LIST),
|
N_("check the todo list"), CHECK_TODO_LIST),
|
||||||
OPT_CMDMODE(0, "skip-unnecessary-picks", &command,
|
|
||||||
N_("skip unnecessary picks"), SKIP_UNNECESSARY_PICKS),
|
|
||||||
OPT_CMDMODE(0, "rearrange-squash", &command,
|
OPT_CMDMODE(0, "rearrange-squash", &command,
|
||||||
N_("rearrange fixup/squash lines"), REARRANGE_SQUASH),
|
N_("rearrange fixup/squash lines"), REARRANGE_SQUASH),
|
||||||
OPT_CMDMODE(0, "add-exec-commands", &command,
|
OPT_CMDMODE(0, "add-exec-commands", &command,
|
||||||
N_("insert exec commands in todo list"), ADD_EXEC),
|
N_("insert exec commands in todo list"), ADD_EXEC),
|
||||||
OPT_CMDMODE(0, "append-todo-help", &command,
|
|
||||||
N_("insert the help in the todo list"), APPEND_TODO_HELP),
|
|
||||||
OPT_CMDMODE(0, "edit-todo", &command,
|
OPT_CMDMODE(0, "edit-todo", &command,
|
||||||
N_("edit the todo list during an interactive rebase"),
|
N_("edit the todo list during an interactive rebase"),
|
||||||
EDIT_TODO),
|
EDIT_TODO),
|
||||||
OPT_CMDMODE(0, "prepare-branch", &command,
|
OPT_CMDMODE(0, "prepare-branch", &command,
|
||||||
N_("prepare the branch to be rebased"), PREPARE_BRANCH),
|
N_("prepare the branch to be rebased"), PREPARE_BRANCH),
|
||||||
OPT_CMDMODE(0, "checkout-onto", &command,
|
|
||||||
N_("checkout a commit"), CHECKOUT_ONTO),
|
|
||||||
OPT_CMDMODE(0, "complete-action", &command,
|
OPT_CMDMODE(0, "complete-action", &command,
|
||||||
N_("complete the action"), COMPLETE_ACTION),
|
N_("complete the action"), COMPLETE_ACTION),
|
||||||
OPT_END()
|
OPT_END()
|
||||||
@ -94,26 +87,14 @@ int cmd_rebase__helper(int argc, const char **argv, const char *prefix)
|
|||||||
return !!transform_todos(flags);
|
return !!transform_todos(flags);
|
||||||
if (command == CHECK_TODO_LIST && argc == 1)
|
if (command == CHECK_TODO_LIST && argc == 1)
|
||||||
return !!check_todo_list();
|
return !!check_todo_list();
|
||||||
if (command == SKIP_UNNECESSARY_PICKS && argc == 1) {
|
|
||||||
struct object_id oid;
|
|
||||||
int ret = skip_unnecessary_picks(&oid);
|
|
||||||
|
|
||||||
if (!ret)
|
|
||||||
puts(oid_to_hex(&oid));
|
|
||||||
return !!ret;
|
|
||||||
}
|
|
||||||
if (command == REARRANGE_SQUASH && argc == 1)
|
if (command == REARRANGE_SQUASH && argc == 1)
|
||||||
return !!rearrange_squash();
|
return !!rearrange_squash();
|
||||||
if (command == ADD_EXEC && argc == 2)
|
if (command == ADD_EXEC && argc == 2)
|
||||||
return !!sequencer_add_exec_commands(argv[1]);
|
return !!sequencer_add_exec_commands(argv[1]);
|
||||||
if (command == APPEND_TODO_HELP && argc == 1)
|
|
||||||
return !!append_todo_help_to_file(0, keep_empty);
|
|
||||||
if (command == EDIT_TODO && argc == 1)
|
if (command == EDIT_TODO && argc == 1)
|
||||||
return !!edit_todo_list(flags);
|
return !!edit_todo_list(flags);
|
||||||
if (command == PREPARE_BRANCH && argc == 2)
|
if (command == PREPARE_BRANCH && argc == 2)
|
||||||
return !!prepare_branch_to_be_rebased(&opts, argv[1]);
|
return !!prepare_branch_to_be_rebased(&opts, argv[1]);
|
||||||
if (command == CHECKOUT_ONTO && argc == 4)
|
|
||||||
return !!checkout_onto(&opts, argv[1], argv[2], argv[3]);
|
|
||||||
if (command == COMPLETE_ACTION && argc == 6)
|
if (command == COMPLETE_ACTION && argc == 6)
|
||||||
return !!complete_action(&opts, flags, argv[1], argv[2], argv[3],
|
return !!complete_action(&opts, flags, argv[1], argv[2], argv[3],
|
||||||
argv[4], argv[5], autosquash);
|
argv[4], argv[5], autosquash);
|
||||||
|
@ -16,56 +16,6 @@ todo="$state_dir"/git-rebase-todo
|
|||||||
GIT_CHERRY_PICK_HELP="$resolvemsg"
|
GIT_CHERRY_PICK_HELP="$resolvemsg"
|
||||||
export GIT_CHERRY_PICK_HELP
|
export GIT_CHERRY_PICK_HELP
|
||||||
|
|
||||||
comment_char=$(git config --get core.commentchar 2>/dev/null)
|
|
||||||
case "$comment_char" in
|
|
||||||
'' | auto)
|
|
||||||
comment_char="#"
|
|
||||||
;;
|
|
||||||
?)
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
comment_char=$(echo "$comment_char" | cut -c1)
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
die_abort () {
|
|
||||||
apply_autostash
|
|
||||||
rm -rf "$state_dir"
|
|
||||||
die "$1"
|
|
||||||
}
|
|
||||||
|
|
||||||
has_action () {
|
|
||||||
test -n "$(git stripspace --strip-comments <"$1")"
|
|
||||||
}
|
|
||||||
|
|
||||||
git_sequence_editor () {
|
|
||||||
if test -z "$GIT_SEQUENCE_EDITOR"
|
|
||||||
then
|
|
||||||
GIT_SEQUENCE_EDITOR="$(git config sequence.editor)"
|
|
||||||
if [ -z "$GIT_SEQUENCE_EDITOR" ]
|
|
||||||
then
|
|
||||||
GIT_SEQUENCE_EDITOR="$(git var GIT_EDITOR)" || return $?
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
eval "$GIT_SEQUENCE_EDITOR" '"$@"'
|
|
||||||
}
|
|
||||||
|
|
||||||
expand_todo_ids() {
|
|
||||||
git rebase--helper --expand-ids
|
|
||||||
}
|
|
||||||
|
|
||||||
collapse_todo_ids() {
|
|
||||||
git rebase--helper --shorten-ids
|
|
||||||
}
|
|
||||||
|
|
||||||
get_missing_commit_check_level () {
|
|
||||||
check_level=$(git config --get rebase.missingCommitsCheck)
|
|
||||||
check_level=${check_level:-ignore}
|
|
||||||
# Don't be case sensitive
|
|
||||||
printf '%s' "$check_level" | tr 'A-Z' 'a-z'
|
|
||||||
}
|
|
||||||
|
|
||||||
# Initiate an action. If the cannot be any
|
# Initiate an action. If the cannot be any
|
||||||
# further action it may exec a command
|
# further action it may exec a command
|
||||||
# or exit and not return.
|
# or exit and not return.
|
||||||
|
@ -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)
|
int edit_todo_list(unsigned flags)
|
||||||
{
|
{
|
||||||
struct strbuf buf = STRBUF_INIT;
|
struct strbuf buf = STRBUF_INIT;
|
||||||
|
@ -3,7 +3,6 @@
|
|||||||
|
|
||||||
void append_todo_help(unsigned edit_todo, unsigned keep_empty,
|
void append_todo_help(unsigned edit_todo, unsigned keep_empty,
|
||||||
struct strbuf *buf);
|
struct strbuf *buf);
|
||||||
int append_todo_help_to_file(unsigned edit_todo, unsigned keep_empty);
|
|
||||||
int edit_todo_list(unsigned flags);
|
int edit_todo_list(unsigned flags);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -3173,9 +3173,9 @@ int prepare_branch_to_be_rebased(struct replay_opts *opts, const char *commit)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
int checkout_onto(struct replay_opts *opts,
|
static int checkout_onto(struct replay_opts *opts,
|
||||||
const char *onto_name, const char *onto,
|
const char *onto_name, const char *onto,
|
||||||
const char *orig_head)
|
const char *orig_head)
|
||||||
{
|
{
|
||||||
struct object_id oid;
|
struct object_id oid;
|
||||||
const char *action = reflog_message(opts, "start", "checkout %s", onto_name);
|
const char *action = reflog_message(opts, "start", "checkout %s", onto_name);
|
||||||
@ -4420,7 +4420,7 @@ static int rewrite_file(const char *path, const char *buf, size_t len)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* skip picking commits whose parents are unchanged */
|
/* skip picking commits whose parents are unchanged */
|
||||||
int skip_unnecessary_picks(struct object_id *output_oid)
|
static int skip_unnecessary_picks(struct object_id *output_oid)
|
||||||
{
|
{
|
||||||
const char *todo_file = rebase_path_todo();
|
const char *todo_file = rebase_path_todo();
|
||||||
struct strbuf buf = STRBUF_INIT;
|
struct strbuf buf = STRBUF_INIT;
|
||||||
|
@ -91,7 +91,6 @@ int sequencer_add_exec_commands(const char *command);
|
|||||||
int transform_todos(unsigned flags);
|
int transform_todos(unsigned flags);
|
||||||
enum missing_commit_check_level get_missing_commit_check_level(void);
|
enum missing_commit_check_level get_missing_commit_check_level(void);
|
||||||
int check_todo_list(void);
|
int check_todo_list(void);
|
||||||
int skip_unnecessary_picks(struct object_id *output_oid);
|
|
||||||
int complete_action(struct replay_opts *opts, unsigned flags,
|
int complete_action(struct replay_opts *opts, unsigned flags,
|
||||||
const char *shortrevisions, const char *onto_name,
|
const char *shortrevisions, const char *onto_name,
|
||||||
const char *onto, const char *orig_head, const char *cmd,
|
const char *onto, const char *orig_head, const char *cmd,
|
||||||
@ -114,9 +113,6 @@ void commit_post_rewrite(const struct commit *current_head,
|
|||||||
const struct object_id *new_head);
|
const struct object_id *new_head);
|
||||||
|
|
||||||
int prepare_branch_to_be_rebased(struct replay_opts *opts, const char *commit);
|
int prepare_branch_to_be_rebased(struct replay_opts *opts, const char *commit);
|
||||||
int checkout_onto(struct replay_opts *opts,
|
|
||||||
const char *onto_name, const char *onto,
|
|
||||||
const char *orig_head);
|
|
||||||
|
|
||||||
#define SUMMARY_INITIAL_COMMIT (1 << 0)
|
#define SUMMARY_INITIAL_COMMIT (1 << 0)
|
||||||
#define SUMMARY_SHOW_AUTHOR_DATE (1 << 1)
|
#define SUMMARY_SHOW_AUTHOR_DATE (1 << 1)
|
||||||
|
Loading…
Reference in New Issue
Block a user