From: Phillip Wood <phillip.wood123@gmail.com>
To: Leon Michalak via GitGitGadget <gitgitgadget@gmail.com>,
git@vger.kernel.org
Cc: Kristoffer Haugsbakk <kristofferhaugsbakk@fastmail.com>,
Eric Sunshine <sunshine@sunshineco.com>,
Christian Couder <christian.couder@gmail.com>,
Leon Michalak <leonmichalak6@gmail.com>
Subject: Re: [PATCH v5 0/4] Better support for customising context lines in --patch commands
Date: Tue, 29 Jul 2025 16:21:03 +0100 [thread overview]
Message-ID: <ec7481b5-5244-4a76-962f-d3bed9e4172a@gmail.com> (raw)
In-Reply-To: <pull.1915.v5.git.1753772511.gitgitgadget@gmail.com>
Hi Leon
The range-diff below looks good to me. Thanks for working on this
Phillip
On 29/07/2025 08:01, Leon Michalak via GitGitGadget wrote:
> This series of patches attempt to give --interactive/--patch compatible
> builtins ("add", "commit", "checkout", "reset", "restore" and "stash")
> better support and nicer experience for configuring how many context lines
> are shown in diffs through a variety of ways.
>
> Prior to these patches, the user could not choose how many context lines
> they saw in --patch commands (apart from one workaround by using
> GIT_DIFF_OPTS=-u<number> ..., however this isn't a good user experience or a
> persistent solution). Additionally, the behaviour around reading from the
> diff.context and diff.interHunkContext configs was also inconsistent with
> other diff generating commands such as "log -p".
>
> The summarised changes below hopefully make this experience better and fix
> some inconsistencies:
>
> * diff.context and diff.interHunkContext configs are now respected by
> --patch compatible commands
> * --unified and --inter-hunk-context command line options have been added
> to --patch compatible commands (which take prescendence over file
> configs)
> * "add" and "commit" in --interactive mode now expose a new "context"
> subcommand which configures the amount of context lines you wish to see
> in subsequent diffs generated from other subcommands such as "patch" or
> "diff"
>
> The original discussion for this can be read at:
>
> * https://lore.kernel.org/git/CAP9jKjGb-Rcr=RLJEzeFdtrekYM+qmHy+1T1fykU3n9cV4GhGw@mail.gmail.com/
>
> Changes since v1:
>
> * Update commit descriptions
> * Update tests to use the more modern and robust test_grep and test_config
> utils
> * Reword some documentation / user messages
> * Ensure each commit is atomic and builds/passes tests on it's own
> * Make new command line options DRY
> * Add tests for interhunk context interaction
> * Error if context config/command line options are negative
> * Drop previous last commit to do with new subcommand for --interactive
> add/commit. My motivations behind this patch series originally where
> quite simple, just for add-patch commands to respect context configs.
> This subcommand, after the discussion in v1, will require more thought
> and a larger implementation that what I had anticipated. I would prefer
> to leave this for another time as it's the least impactful but the most
> time intensive and complicated idea.
>
> Changes since v2:
>
> * Update tests to only test single command (following Philip's suggestion)
> * Add negative option checks
> * Minor commit re-wording
>
> Changes since v3:
>
> * Update commit descriptions
> * Read struct properties directly instead of assigning to variables first
> * Simplify config setting / error checking
> * Remove redundant tests in later commit as they were replaced with better
> test(s)
> * Change tests to use single quotes (this messes with the grep so was
> unable to explicitly test single quotes in the error messages, so decided
> to use regex . instead, which is what some other tests that have this
> problem seem to use as well)
>
> Changes since v4:
>
> * Add back tests to maintain good coverage and remove redundant tests
>
> Leon Michalak (4):
> t: use test_grep in t3701 and t4055
> t: use test_config in t4055
> add-patch: respect diff.context configuration
> add-patch: add diff.context command line overrides
>
> Documentation/diff-context-options.adoc | 10 ++
> Documentation/git-add.adoc | 2 +
> Documentation/git-checkout.adoc | 2 +
> Documentation/git-commit.adoc | 2 +
> Documentation/git-reset.adoc | 2 +
> Documentation/git-restore.adoc | 2 +
> Documentation/git-stash.adoc | 2 +
> add-interactive.c | 45 +++++++--
> add-interactive.h | 17 +++-
> add-patch.c | 14 ++-
> builtin/add.c | 21 ++++-
> builtin/checkout.c | 31 +++++-
> builtin/commit.c | 16 +++-
> builtin/reset.c | 17 +++-
> builtin/stash.c | 56 ++++++++---
> commit.h | 3 +-
> parse-options.h | 2 +
> t/t3701-add-interactive.sh | 119 +++++++++++++++++++-----
> t/t4055-diff-context.sh | 42 ++++-----
> t/t9902-completion.sh | 2 +
> 20 files changed, 324 insertions(+), 83 deletions(-)
> create mode 100644 Documentation/diff-context-options.adoc
>
>
> base-commit: cf6f63ea6bf35173e02e18bdc6a4ba41288acff9
> Published-As: https://github.com/gitgitgadget/git/releases/tag/pr-1915%2FNinjaInShade%2Finteractive-patch-context-v5
> Fetch-It-Via: git fetch https://github.com/gitgitgadget/git pr-1915/NinjaInShade/interactive-patch-context-v5
> Pull-Request: https://github.com/gitgitgadget/git/pull/1915
>
> Range-diff vs v4:
>
> 1: bbb2bc7082b = 1: bbb2bc7082b t: use test_grep in t3701 and t4055
> 2: feace2d3676 = 2: feace2d3676 t: use test_config in t4055
> 3: 994029d6602 = 3: 994029d6602 add-patch: respect diff.context configuration
> 4: 2774b930406 ! 4: 9731e5b76fb add-patch: add diff.context command line overrides
> @@ parse-options.h: int parse_opt_tracking_mode(const struct option *, const char *
> OPT_SET_INT_F('4', "ipv4", (v), N_("use IPv4 addresses only"), \
>
> ## t/t3701-add-interactive.sh ##
> -@@ t/t3701-add-interactive.sh: test_expect_success 'hunk splitting works with diff.suppressBlankEmpty' '
> - test_cmp expect actual
> +@@ t/t3701-add-interactive.sh: test_expect_success 'add -p rejects negative diff.context' '
> + test_grep "diff.context cannot be negative" output
> '
>
> --test_expect_success 'add -p respects diff.context' '
> -- test_write_lines a b c d e f g h i j k l m >file &&
> +for cmd in add checkout restore 'commit -m file'
> +do
> + test_expect_success "${cmd%% *} accepts -U and --inter-hunk-context" '
> @@ t/t3701-add-interactive.sh: test_expect_success 'hunk splitting works with diff.
> + test_write_lines a b c d e f g h i j k l m n o p q r s t u v >file &&
> + git commit -m file file &&
> + test_write_lines a b c d e F g h i j k l m n o p Q r s t u v >file &&
> - git add file &&
> -- test_write_lines a b c d e f G h i j k l m >file &&
> -- echo y | git -c diff.context=5 add -p >actual &&
> -- test_grep "@@ -2,11 +2,11 @@" actual
> ++ git add file &&
> + echo y | git -c diff.context=5 -c diff.interhunkcontext=1 \
> + reset -p -U 4 --inter-hunk-context 2 >actual &&
> + test_grep "@@ -2,20 +2,20 @@" actual
> - '
> -
> --test_expect_success 'add -p respects diff.interHunkContext' '
> -- test_write_lines a b c d e f g h i j k l m n o p q r s >file &&
> -- git add file &&
> -- test_write_lines a b c d E f g i i j k l m N o p q r s >file &&
> -- echo y | git -c diff.interhunkcontext=2 add -p >actual &&
> -- test_grep "@@ -2,16 +2,16 @@" actual
> ++'
> ++
> +test_expect_success 'stash accepts -U and --inter-hunk-context' '
> + test_write_lines a b c d e F g h i j k l m n o p Q r s t u v >file &&
> + git commit -m file file &&
> @@ t/t3701-add-interactive.sh: test_expect_success 'hunk splitting works with diff.
> + echo y | git -c diff.context=5 -c diff.interhunkcontext=1 \
> + stash -p -U 4 --inter-hunk-context 2 >actual &&
> + test_grep "@@ -2,20 +2,20 @@" actual
> - '
> -
> --test_expect_success 'add -p rejects negative diff.context' '
> -- test_config diff.context -1 &&
> -- test_must_fail git add -p 2>output &&
> -- test_grep "diff.context cannot be negative" output
> --'
> ++'
> ++
> +for cmd in add checkout commit reset restore "stash save" "stash push"
> +do
> + test_expect_success "$cmd rejects invalid context options" '
> @@ t/t3701-add-interactive.sh: test_expect_success 'hunk splitting works with diff.
> + test_grep -E ".--inter-hunk-context. requires .(--interactive/)?--patch." actual
> + '
> +done
> -
> - test_done
> -
> - ## t/t4055-diff-context.sh ##
> -@@ t/t4055-diff-context.sh: test_expect_success 'The -U option overrides diff.context' '
> - test_grep ! "^ firstline" output
> - '
> -
> -+test_expect_success 'The -U option overrides diff.context for "add"' '
> -+ test_config diff.context 8 &&
> -+ git add -U4 -p >output &&
> -+ test_grep ! "^ firstline" output
> -+'
> -+
> -+test_expect_success 'The -U option overrides diff.context for "commit"' '
> -+ test_config diff.context 8 &&
> -+ ! git commit -U4 -p >output &&
> -+ test_grep ! "^ firstline" output
> -+'
> -+
> -+test_expect_success 'The -U option overrides diff.context for "checkout"' '
> -+ test_config diff.context 8 &&
> -+ git checkout -U4 -p >output &&
> -+ test_grep ! "^ firstline" output
> -+'
> +
> -+test_expect_success 'The -U option overrides diff.context for "stash"' '
> -+ test_config diff.context 8 &&
> -+ ! git stash -U4 -p >output &&
> -+ test_grep ! "^ firstline" output
> -+'
> -+
> -+test_expect_success 'The -U option overrides diff.context for "restore"' '
> -+ test_config diff.context 8 &&
> -+ git restore -U4 -p >output &&
> -+ test_grep ! "^ firstline" output
> -+'
> -+
> - test_expect_success 'diff.context honored by "diff"' '
> - test_config diff.context 8 &&
> - git diff >output &&
> + test_done
>
> ## t/t9902-completion.sh ##
> @@ t/t9902-completion.sh: test_expect_success 'double dash "git checkout"' '
>
next prev parent reply other threads:[~2025-07-29 15:21 UTC|newest]
Thread overview: 77+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-05-05 9:18 [PATCH 0/3] Better support for customising context lines in --patch commands Leon Michalak via GitGitGadget
2025-05-05 9:18 ` [PATCH 1/3] add-patch: respect diff.context configuration Leon Michalak via GitGitGadget
2025-05-05 20:29 ` Eric Sunshine
2025-05-06 8:55 ` Phillip Wood
2025-05-06 17:29 ` Junio C Hamano
2025-05-05 9:18 ` [PATCH 2/3] add-patch: add diff.context command line overrides Leon Michalak via GitGitGadget
2025-05-05 9:49 ` Kristoffer Haugsbakk
[not found] ` <CAP9jKjHj7WP91aKA9SE94zYj+naBGLUs99mF3G4BhTGcGjFDUQ@mail.gmail.com>
2025-05-05 10:11 ` Leon Michalak
2025-05-07 9:51 ` Phillip Wood
2025-05-07 18:07 ` Junio C Hamano
2025-05-07 18:28 ` Leon Michalak
2025-05-07 20:25 ` Junio C Hamano
2025-05-05 9:18 ` [PATCH 3/3] add-interactive: add new "context" subcommand Leon Michalak via GitGitGadget
2025-05-06 0:02 ` Eric Sunshine
2025-05-06 7:20 ` Leon Michalak
2025-05-06 8:28 ` Christian Couder
2025-05-06 17:07 ` Leon Michalak
2025-05-06 16:37 ` Junio C Hamano
2025-05-06 17:25 ` Leon Michalak
2025-05-07 13:30 ` Phillip Wood
2025-05-07 19:10 ` Junio C Hamano
2025-05-10 13:46 ` [PATCH v2 0/4] Better support for customising context lines in --patch commands Leon Michalak via GitGitGadget
2025-05-10 13:46 ` [PATCH v2 1/4] test: refactor to use "test_grep" Leon Michalak via GitGitGadget
2025-05-12 13:42 ` Junio C Hamano
2025-05-12 16:58 ` Leon Michalak
2025-05-10 13:46 ` [PATCH v2 2/4] test: refactor to use "test_config" Leon Michalak via GitGitGadget
2025-05-10 13:46 ` [PATCH v2 3/4] add-patch: respect diff.context configuration Leon Michalak via GitGitGadget
2025-05-13 13:52 ` Phillip Wood
2025-05-13 15:47 ` Junio C Hamano
2025-05-14 15:13 ` Phillip Wood
2025-05-15 12:58 ` Junio C Hamano
2025-05-10 13:46 ` [PATCH v2 4/4] add-patch: add diff.context command line overrides Leon Michalak via GitGitGadget
2025-05-12 16:45 ` Junio C Hamano
2025-05-12 17:03 ` Leon Michalak
2025-05-13 13:52 ` Phillip Wood
2025-05-13 14:39 ` Phillip Wood
2025-05-13 15:05 ` Leon Michalak
2025-05-14 15:13 ` phillip.wood123
2025-06-28 16:34 ` [PATCH v3 0/4] Better support for customising context lines in --patch commands Leon Michalak via GitGitGadget
2025-06-28 16:34 ` [PATCH v3 1/4] test: use "test_grep" Leon Michalak via GitGitGadget
2025-06-30 16:23 ` Junio C Hamano
2025-06-28 16:34 ` [PATCH v3 2/4] test: use "test_config" Leon Michalak via GitGitGadget
2025-06-30 16:35 ` Junio C Hamano
2025-06-28 16:34 ` [PATCH v3 3/4] add-patch: respect diff.context configuration Leon Michalak via GitGitGadget
2025-06-30 16:55 ` Junio C Hamano
2025-07-01 10:00 ` Phillip Wood
2025-06-28 16:34 ` [PATCH v3 4/4] add-patch: add diff.context command line overrides Leon Michalak via GitGitGadget
2025-06-30 17:03 ` Junio C Hamano
2025-07-01 9:59 ` Phillip Wood
2025-07-01 15:54 ` Junio C Hamano
2025-07-02 14:07 ` Phillip Wood
2025-07-02 18:28 ` Junio C Hamano
2025-07-01 9:59 ` Phillip Wood
2025-06-30 16:16 ` [PATCH v3 0/4] Better support for customising context lines in --patch commands Junio C Hamano
2025-07-09 0:09 ` Junio C Hamano
2025-07-09 7:57 ` Leon Michalak
2025-07-09 15:32 ` Junio C Hamano
2025-07-19 12:28 ` [PATCH v4 " Leon Michalak via GitGitGadget
2025-07-19 12:28 ` [PATCH v4 1/4] t: use test_grep in t3701 and t4055 Leon Michalak via GitGitGadget
2025-07-19 12:28 ` [PATCH v4 2/4] t: use test_config in t4055 Leon Michalak via GitGitGadget
2025-07-19 12:28 ` [PATCH v4 3/4] add-patch: respect diff.context configuration Leon Michalak via GitGitGadget
2025-07-19 12:28 ` [PATCH v4 4/4] add-patch: add diff.context command line overrides Leon Michalak via GitGitGadget
2025-07-22 16:01 ` Phillip Wood
2025-07-22 18:02 ` Leon Michalak
2025-07-22 18:05 ` Leon Michalak
2025-07-23 9:41 ` Phillip Wood
2025-07-21 16:50 ` [PATCH v4 0/4] Better support for customising context lines in --patch commands Junio C Hamano
2025-07-22 16:05 ` Phillip Wood
2025-07-22 17:20 ` Junio C Hamano
2025-07-29 7:01 ` [PATCH v5 " Leon Michalak via GitGitGadget
2025-07-29 7:01 ` [PATCH v5 1/4] t: use test_grep in t3701 and t4055 Leon Michalak via GitGitGadget
2025-07-29 7:01 ` [PATCH v5 2/4] t: use test_config in t4055 Leon Michalak via GitGitGadget
2025-07-29 7:01 ` [PATCH v5 3/4] add-patch: respect diff.context configuration Leon Michalak via GitGitGadget
2025-07-29 7:01 ` [PATCH v5 4/4] add-patch: add diff.context command line overrides Leon Michalak via GitGitGadget
2025-07-29 15:21 ` Phillip Wood [this message]
2025-07-29 15:55 ` [PATCH v5 0/4] Better support for customising context lines in --patch commands Junio C Hamano
2025-07-29 16:18 ` Leon Michalak
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=ec7481b5-5244-4a76-962f-d3bed9e4172a@gmail.com \
--to=phillip.wood123@gmail.com \
--cc=christian.couder@gmail.com \
--cc=git@vger.kernel.org \
--cc=gitgitgadget@gmail.com \
--cc=kristofferhaugsbakk@fastmail.com \
--cc=leonmichalak6@gmail.com \
--cc=phillip.wood@dunelm.org.uk \
--cc=sunshine@sunshineco.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).