]> git.ipfire.org Git - thirdparty/git.git/commitdiff
add-patch: respect diff.context configuration
authorLeon Michalak <leonmichalak6@gmail.com>
Sat, 10 May 2025 13:46:28 +0000 (13:46 +0000)
committerJunio C Hamano <gitster@pobox.com>
Mon, 12 May 2025 16:38:06 +0000 (09:38 -0700)
Various builtins that use add-patch infrastructure do not respect
the user's diff.context and diff.interHunkContext file configurations.
This patch fixes this inconsistency.

Signed-off-by: Leon Michalak <leonmichalak6@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
add-interactive.c
add-interactive.h
add-patch.c
t/t4055-diff-context.sh

index 97ff35b6f12a32e4154fbe4d195d444c0f71c347..cac036441caf0e814f7e09129be532cdff1a7b04 100644 (file)
@@ -39,8 +39,12 @@ static void init_color(struct repository *r, struct add_i_state *s,
 void init_add_i_state(struct add_i_state *s, struct repository *r)
 {
        const char *value;
+       int context;
+       int interhunkcontext;
 
        s->r = r;
+       s->context = -1;
+       s->interhunkcontext = -1;
 
        if (repo_config_get_value(r, "color.interactive", &value))
                s->use_color = -1;
@@ -78,6 +82,19 @@ void init_add_i_state(struct add_i_state *s, struct repository *r)
        repo_config_get_string(r, "diff.algorithm",
                               &s->interactive_diff_algorithm);
 
+       if (!repo_config_get_int(r, "diff.context", &context)) {
+               if (context < 0)
+                       die(_("%s cannot be negative"), "diff.context");
+               else
+                       s->context = context;
+       };
+       if (!repo_config_get_int(r, "diff.interHunkContext", &interhunkcontext)) {
+               if (interhunkcontext < 0)
+                       die(_("%s cannot be negative"), "diff.interHunkContext");
+               else
+                       s->interhunkcontext = interhunkcontext;
+       };
+
        repo_config_get_bool(r, "interactive.singlekey", &s->use_single_key);
        if (s->use_single_key)
                setbuf(stdin, NULL);
index 693f125e8e4bc64ac0ccc8ac3b8dea812a397330..c63f35b14be86806ac16d55214d459da22f7a72f 100644 (file)
@@ -18,6 +18,7 @@ struct add_i_state {
 
        int use_single_key;
        char *interactive_diff_filter, *interactive_diff_algorithm;
+       int context, interhunkcontext;
 };
 
 void init_add_i_state(struct add_i_state *s, struct repository *r);
index 95c67d8c80c4f33bfa6180f69fdf2065d0b5b85c..b43ca1600738d1f07be01470c27ce312c2732f7e 100644 (file)
@@ -415,6 +415,8 @@ static int parse_diff(struct add_p_state *s, const struct pathspec *ps)
 {
        struct strvec args = STRVEC_INIT;
        const char *diff_algorithm = s->s.interactive_diff_algorithm;
+       int diff_context = s->s.context;
+       int diff_interhunkcontext = s->s.interhunkcontext;
        struct strbuf *plain = &s->plain, *colored = NULL;
        struct child_process cp = CHILD_PROCESS_INIT;
        char *p, *pend, *colored_p = NULL, *colored_pend = NULL, marker = '\0';
@@ -424,6 +426,10 @@ static int parse_diff(struct add_p_state *s, const struct pathspec *ps)
        int res;
 
        strvec_pushv(&args, s->mode->diff_cmd);
+       if (diff_context != -1)
+               strvec_pushf(&args, "--unified=%i", diff_context);
+       if (diff_interhunkcontext != -1)
+               strvec_pushf(&args, "--inter-hunk-context=%i", diff_interhunkcontext);
        if (diff_algorithm)
                strvec_pushf(&args, "--diff-algorithm=%s", diff_algorithm);
        if (s->revision) {
index 1384a8195705e3a838b3e4c442d19315917945f4..c4b861c360ccd329d9c9344afa2d3f4d9851d235 100755 (executable)
@@ -52,6 +52,46 @@ test_expect_success 'diff.context honored by "log"' '
        test_grep "^ firstline" output
 '
 
+test_expect_success 'diff.context honored by "add"' '
+       git add -p >output &&
+       test_grep ! firstline output &&
+       test_config diff.context 8 &&
+       git log -1 -p >output &&
+       test_grep "^ firstline" output
+'
+
+test_expect_success 'diff.context honored by "commit"' '
+       ! git commit -p >output &&
+       test_grep ! firstline output &&
+       test_config diff.context 8 &&
+       ! git commit -p >output &&
+       test_grep "^ firstline" output
+'
+
+test_expect_success 'diff.context honored by "checkout"' '
+       git checkout -p >output &&
+       test_grep ! firstline output &&
+       test_config diff.context 8 &&
+       git checkout -p >output &&
+       test_grep "^ firstline" output
+'
+
+test_expect_success 'diff.context honored by "stash"' '
+       ! git stash -p >output &&
+       test_grep ! firstline output &&
+       test_config diff.context 8 &&
+       ! git stash -p >output &&
+       test_grep "^ firstline" output
+'
+
+test_expect_success 'diff.context honored by "restore"' '
+       git restore -p >output &&
+       test_grep ! firstline output &&
+       test_config diff.context 8 &&
+       git restore -p >output &&
+       test_grep "^ firstline" output
+'
+
 test_expect_success 'The -U option overrides diff.context' '
        test_config diff.context 8 &&
        git log -U4 -1 >output &&
@@ -82,6 +122,36 @@ test_expect_success 'negative integer config parsing' '
        test_grep "bad config variable" output
 '
 
+test_expect_success 'negative integer config parsing by "add"' '
+       test_config diff.context -1 &&
+       test_must_fail git add -p 2>output &&
+       test_grep "diff.context cannot be negative" output
+'
+
+test_expect_success 'negative integer config parsing by "commit"' '
+       test_config diff.context -1 &&
+       test_must_fail git commit -p 2>output &&
+       test_grep "bad config variable" output
+'
+
+test_expect_success 'negative integer config parsing by "checkout"' '
+       test_config diff.context -1 &&
+       test_must_fail git checkout -p 2>output &&
+       test_grep "diff.context cannot be negative" output
+'
+
+test_expect_success 'negative integer config parsing by "stash"' '
+       test_config diff.context -1 &&
+       test_must_fail git stash -p 2>output &&
+       test_grep "diff.context cannot be negative" output
+'
+
+test_expect_success 'negative integer config parsing by "restore"' '
+       test_config diff.context -1 &&
+       test_must_fail git restore -p 2>output &&
+       test_grep "diff.context cannot be negative" output
+'
+
 test_expect_success '-U0 is valid, so is diff.context=0' '
        test_config diff.context 0 &&
        git diff >output &&