]> Kevux Git Server - rit/commitdiff
interactive -p: add new `--auto-advance` flag
authorAbraham Samuel Adekunle <abrahamadekunle50@gmail.com>
Sat, 14 Feb 2026 11:03:54 +0000 (12:03 +0100)
committerJunio C Hamano <gitster@pobox.com>
Tue, 17 Feb 2026 18:48:36 +0000 (10:48 -0800)
When using the interactive add, reset, stash or checkout machinery,
we do not have the option of reworking with a file when selecting
hunks, because the session automatically advances to the next file
or ends if we have just one file.

Introduce the flag `--auto-advance` which auto advances by default,
when interactively selecting patches with the '--patch' option.
However, the `--no-auto-advance` option does not auto advance, thereby
allowing users the option to rework with files.

Signed-off-by: Abraham Samuel Adekunle <abrahamadekunle50@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
add-interactive.c
add-interactive.h
builtin/add.c
builtin/checkout.c
builtin/reset.c
builtin/stash.c
t/t9902-completion.sh

index 68fc09547dd02ea93f9fe99989e4220673e75883..ce9e737e0f5affcf0c795223f8119cdfb4d578f1 100644 (file)
@@ -64,6 +64,7 @@ void init_add_i_state(struct add_i_state *s, struct repository *r,
        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");
 
@@ -1017,6 +1018,7 @@ static int run_patch(struct add_i_state *s, const struct pathspec *ps,
                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 };
index da49502b7656f432351f41eb1fcf229cc787bea7..784339777509f7091823ac4bdcb2d6984cdde3d6 100644 (file)
@@ -6,9 +6,10 @@
 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;
@@ -29,6 +30,7 @@ struct add_i_state {
        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,
index 32709794b3873f8a4e73df5338c752271155bca5..4357f87b7f807b815b75ce9a82b6323cd94d68ff 100644 (file)
@@ -256,6 +256,8 @@ static struct option builtin_add_options[] = {
        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")),
@@ -418,6 +420,8 @@ int cmd_add(int argc,
                        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) {
index 66b69df6e67234a5c67525abd4c432490ba561e9..6710b53fd08b283b67f2910f12f0f3ea357e3ef0 100644 (file)
@@ -63,6 +63,7 @@ struct checkout_opts {
        int patch_mode;
        int patch_context;
        int patch_interhunk_context;
+       int auto_advance;
        int quiet;
        int merge;
        int force;
@@ -111,6 +112,7 @@ struct checkout_opts {
        .merge = -1, \
        .patch_context = -1, \
        .patch_interhunk_context = -1, \
+       .auto_advance = 1, \
 }
 
 struct branch_info {
@@ -549,6 +551,7 @@ static int checkout_paths(const struct checkout_opts *opts,
                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];
@@ -1801,6 +1804,8 @@ static int checkout_main(int argc, const char **argv, const char *prefix,
                        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) {
@@ -1999,6 +2004,8 @@ int cmd_checkout(int argc,
                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()
        };
 
index ed35802af15c94e367be30de76fb96df43ffe441..7535591530d2e5634dc51b86111b6ba4be0d8ee6 100644 (file)
@@ -371,6 +371,8 @@ int cmd_reset(int argc,
                               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,
@@ -443,6 +445,8 @@ int cmd_reset(int argc,
                        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
index 948eba06fbccb3060d116db5862816ddc5d1485d..1a98358fa6a838ff1d04a9bc638347b54cf7c1cd 100644 (file)
@@ -1849,6 +1849,8 @@ static int push_stash(int argc, const char **argv, const char *prefix,
                         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")),
@@ -1911,6 +1913,8 @@ static int push_stash(int argc, const char **argv, const char *prefix,
                        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)
@@ -1952,6 +1956,8 @@ static int save_stash(int argc, const char **argv, const char *prefix,
                         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")),
@@ -1983,6 +1989,8 @@ static int save_stash(int argc, const char **argv, const char *prefix,
                        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,
index 964e1f156932c6c13b506185f508b877b2a2ca00..3da5527ae5c9af933d7bfcfe959de535a4069269 100755 (executable)
@@ -2601,6 +2601,7 @@ test_expect_success 'double dash "git checkout"' '
        --ignore-skip-worktree-bits Z
        --ignore-other-worktrees Z
        --recurse-submodules Z
+       --auto-advance Z
        --progress Z
        --guess Z
        --no-guess Z