s->r = r;
s->context = -1;
s->interhunkcontext = -1;
+ s->auto_advance = add_p_opt->auto_advance;
s->use_color_interactive = check_color_config(r, "color.interactive");
struct add_p_opt add_p_opt = {
.context = s->context,
.interhunkcontext = s->interhunkcontext,
+ .auto_advance = s->auto_advance
};
struct strvec args = STRVEC_INIT;
struct pathspec ps_selected = { 0 };
struct add_p_opt {
int context;
int interhunkcontext;
+ int auto_advance;
};
-#define ADD_P_OPT_INIT { .context = -1, .interhunkcontext = -1 }
+#define ADD_P_OPT_INIT { .context = -1, .interhunkcontext = -1, .auto_advance = 1 }
struct add_i_state {
struct repository *r;
int use_single_key;
char *interactive_diff_filter, *interactive_diff_algorithm;
int context, interhunkcontext;
+ int auto_advance;
};
void init_add_i_state(struct add_i_state *s, struct repository *r,
OPT_GROUP(""),
OPT_BOOL('i', "interactive", &add_interactive, N_("interactive picking")),
OPT_BOOL('p', "patch", &patch_interactive, N_("select hunks interactively")),
+ OPT_BOOL(0, "auto-advance", &add_p_opt.auto_advance,
+ N_("auto advance to the next file when selecting hunks interactively")),
OPT_DIFF_UNIFIED(&add_p_opt.context),
OPT_DIFF_INTERHUNK_CONTEXT(&add_p_opt.interhunkcontext),
OPT_BOOL('e', "edit", &edit_interactive, N_("edit current diff and apply")),
die(_("the option '%s' requires '%s'"), "--unified", "--interactive/--patch");
if (add_p_opt.interhunkcontext != -1)
die(_("the option '%s' requires '%s'"), "--inter-hunk-context", "--interactive/--patch");
+ if (!add_p_opt.auto_advance)
+ die(_("the option '%s' requires '%s'"), "--no-auto-advance", "--interactive/--patch");
}
if (edit_interactive) {
int patch_mode;
int patch_context;
int patch_interhunk_context;
+ int auto_advance;
int quiet;
int merge;
int force;
.merge = -1, \
.patch_context = -1, \
.patch_interhunk_context = -1, \
+ .auto_advance = 1, \
}
struct branch_info {
struct add_p_opt add_p_opt = {
.context = opts->patch_context,
.interhunkcontext = opts->patch_interhunk_context,
+ .auto_advance = opts->auto_advance
};
const char *rev = new_branch_info->name;
char rev_oid[GIT_MAX_HEXSZ + 1];
die(_("the option '%s' requires '%s'"), "--unified", "--patch");
if (opts->patch_interhunk_context != -1)
die(_("the option '%s' requires '%s'"), "--inter-hunk-context", "--patch");
+ if (!opts->auto_advance)
+ die(_("the option '%s' requires '%s'"), "--no-auto-advance", "--patch");
}
if (opts->show_progress < 0) {
OPT_BOOL(0, "guess", &opts.dwim_new_local_branch,
N_("second guess 'git checkout <no-such-branch>' (default)")),
OPT_BOOL(0, "overlay", &opts.overlay_mode, N_("use overlay mode (default)")),
+ OPT_BOOL(0, "auto-advance", &opts.auto_advance,
+ N_("auto advance to the next file when selecting hunks interactively")),
OPT_END()
};
PARSE_OPT_OPTARG,
option_parse_recurse_submodules_worktree_updater),
OPT_BOOL('p', "patch", &patch_mode, N_("select hunks interactively")),
+ OPT_BOOL(0, "auto-advance", &add_p_opt.auto_advance,
+ N_("auto advance to the next file when selecting hunks interactively")),
OPT_DIFF_UNIFIED(&add_p_opt.context),
OPT_DIFF_INTERHUNK_CONTEXT(&add_p_opt.interhunkcontext),
OPT_BOOL('N', "intent-to-add", &intent_to_add,
die(_("the option '%s' requires '%s'"), "--unified", "--patch");
if (add_p_opt.interhunkcontext != -1)
die(_("the option '%s' requires '%s'"), "--inter-hunk-context", "--patch");
+ if (!add_p_opt.auto_advance)
+ die(_("the option '%s' requires '%s'"), "--no-auto-advance", "--patch");
}
/* git reset tree [--] paths... can be used to
N_("stash staged changes only")),
OPT_BOOL('p', "patch", &patch_mode,
N_("stash in patch mode")),
+ OPT_BOOL(0, "auto-advance", &add_p_opt.auto_advance,
+ N_("auto advance to the next file when selecting hunks interactively")),
OPT_DIFF_UNIFIED(&add_p_opt.context),
OPT_DIFF_INTERHUNK_CONTEXT(&add_p_opt.interhunkcontext),
OPT__QUIET(&quiet, N_("quiet mode")),
die(_("the option '%s' requires '%s'"), "--unified", "--patch");
if (add_p_opt.interhunkcontext != -1)
die(_("the option '%s' requires '%s'"), "--inter-hunk-context", "--patch");
+ if (!add_p_opt.auto_advance)
+ die(_("the option '%s' requires '%s'"), "--no-auto-advance", "--patch");
}
if (add_p_opt.context < -1)
N_("stash staged changes only")),
OPT_BOOL('p', "patch", &patch_mode,
N_("stash in patch mode")),
+ OPT_BOOL(0, "auto-advance", &add_p_opt.auto_advance,
+ N_("auto advance to the next file when selecting hunks interactively")),
OPT_DIFF_UNIFIED(&add_p_opt.context),
OPT_DIFF_INTERHUNK_CONTEXT(&add_p_opt.interhunkcontext),
OPT__QUIET(&quiet, N_("quiet mode")),
die(_("the option '%s' requires '%s'"), "--unified", "--patch");
if (add_p_opt.interhunkcontext != -1)
die(_("the option '%s' requires '%s'"), "--inter-hunk-context", "--patch");
+ if (!add_p_opt.auto_advance)
+ die(_("the option '%s' requires '%s'"), "--no-auto-advance", "--patch");
}
ret = do_push_stash(&ps, stash_msg, quiet, keep_index,
--ignore-skip-worktree-bits Z
--ignore-other-worktrees Z
--recurse-submodules Z
+ --auto-advance Z
--progress Z
--guess Z
--no-guess Z