From: Elijah Newren <newren@gmail.com>
To: Sergey Organov <sorganov@gmail.com>
Cc: Junio C Hamano <gitster@pobox.com>, Jeff King <peff@peff.net>,
Philip Oakley <philipoakley@iee.email>,
Git Mailing List <git@vger.kernel.org>
Subject: Re: [PATCH v1 27/27] doc/git-show: include --diff-merges description
Date: Thu, 3 Dec 2020 08:47:35 -0800 [thread overview]
Message-ID: <CABPp-BG_YT2i_27tqkh_e4mwfkYae-zDCEYL=F+NjYQed2gKAg@mail.gmail.com> (raw)
In-Reply-To: <20201108213838.4880-28-sorganov@gmail.com>
Hi,
On Sun, Nov 8, 2020 at 1:44 PM Sergey Organov <sorganov@gmail.com> wrote:
>
> Move description of --diff-merges option from git-log.txt to
> diff-options.txt so that it is included in the git-show help.
>
> While we are at it, make git-show closer to git-log in this area by
> providing similar wording in the introduction of diff options.
>
> Signed-off-by: Sergey Organov <sorganov@gmail.com>
> ---
> Documentation/diff-options.txt | 54 ++++++++++++++++++++++++++++++++++
> Documentation/git-log.txt | 52 --------------------------------
> Documentation/git-show.txt | 8 +++--
> 3 files changed, 60 insertions(+), 54 deletions(-)
>
> diff --git a/Documentation/diff-options.txt b/Documentation/diff-options.txt
> index 573fb9bb71e2..f1629887103e 100644
> --- a/Documentation/diff-options.txt
> +++ b/Documentation/diff-options.txt
> @@ -33,6 +33,60 @@ endif::git-diff[]
> show the patch by default, or to cancel the effect of `--patch`.
> endif::git-format-patch[]
>
> +ifdef::git-log[]
> +Note that unless one of `--diff-merges` variants (including short
> +`-m`, `-c`, and `--cc` options) is explicitly given, merge commits
> +will not show a diff, even if a diff format like `--patch` is
> +selected, nor will they match search options like `-S`. The exception
> +is when `--first-parent` is in use, in which case
> +`--diff-merges=first-parent` is implied.
So, now diff-options says that no diffs are the defaults for merge commits...
> +
> +--diff-merges=(off|none|first-parent|separate|combined|dense-combined)::
> +--no-diff-merges::
> + Specify diff format to be used for merge commits. This has no
> + effect unless diff output is enabled in the first place (e.g.,
> + with `--patch` option.)
> ++
> +--diff-merges=(off|none):::
> +--no-diff-merges:::
> + (default) Disable output of diffs for merge commits. Useful to
> + override implied value.
> ++
> +--diff-merges=first-parent:::
> + This option makes merge commits show the full diff with
> + respect to the first parent only, exactly like regular
> + commits.
> ++
> +--diff-merges=separate:::
> +-m:::
> + This makes merge commits show the full diff with respect to
> + each of the parents. Separate log entry and diff is generated
> + for each parent.
> ++
> +--diff-merges=combined:::
> +-c:::
> + With this option, diff output for a merge commit shows the
> + differences from each of the parents to the merge result
> + simultaneously instead of showing pairwise diff between a
> + parent and the result one at a time. Furthermore, it lists
> + only files which were modified from all parents.
> ++
> +--diff-merges=dense-combined:::
> +--cc:::
> + With this option the output produced by
> + `--diff-merges=combined` is further compressed by omitting
> + uninteresting hunks whose contents in the parents have only
> + two variants and the merge result picks one of them without
> + modification.
> +
> +--combined-all-paths::
> + This flag causes combined diffs (used for merge commits) to
> + list the name of the file from all parents. It thus only has
> + effect when `--diff-merges=[dense-]combined` is in use, and
> + is likely only useful if filename changes are detected (i.e.
> + when either rename or copy detection have been requested).
> +endif::git-log[]
> +
> -U<n>::
> --unified=<n>::
> Generate diffs with <n> lines of context instead of
> diff --git a/Documentation/git-log.txt b/Documentation/git-log.txt
> index de498a189646..0cacc780bf30 100644
> --- a/Documentation/git-log.txt
> +++ b/Documentation/git-log.txt
> @@ -120,58 +120,6 @@ DIFF FORMATTING
> By default, `git log` does not generate any diff output. The options
> below can be used to show the changes made by each commit.
>
> -Note that unless one of `--diff-merges` variants (including short
> -`-m`, `-c`, and `--cc` options) is explicitly given, merge commits
> -will not show a diff, even if a diff format like `--patch` is
> -selected, nor will they match search options like `-S`. The exception
> -is when `--first-parent` is in use, in which case
> -`--diff-merges=first-parent` is implied.
> -
> ---diff-merges=(off|none|first-parent|separate|combined|dense-combined)::
> ---no-diff-merges::
> - Specify diff format to be used for merge commits. This has no
> - effect unless diff output is enabled in the first place (e.g.,
> - with `--patch` option.)
> -+
> ---diff-merges=(off|none):::
> ---no-diff-merges:::
> - (default) Disable output of diffs for merge commits. Useful to
> - override implied value.
> -+
> ---diff-merges=first-parent:::
> - This option makes merge commits show the full diff with
> - respect to the first parent only, exactly like regular
> - commits.
> -+
> ---diff-merges=separate:::
> --m:::
> - This makes merge commits show the full diff with respect to
> - each of the parents. Separate log entry and diff is generated
> - for each parent.
> -+
> ---diff-merges=combined:::
> --c:::
> - With this option, diff output for a merge commit shows the
> - differences from each of the parents to the merge result
> - simultaneously instead of showing pairwise diff between a
> - parent and the result one at a time. Furthermore, it lists
> - only files which were modified from all parents.
> -+
> ---diff-merges=dense-combined:::
> ---cc:::
> - With this option the output produced by
> - `--diff-merges=combined` is further compressed by omitting
> - uninteresting hunks whose contents in the parents have only
> - two variants and the merge result picks one of them without
> - modification.
> -
> ---combined-all-paths::
> - This flag causes combined diffs (used for merge commits) to
> - list the name of the file from all parents. It thus only has
> - effect when `--diff-merges=[dense-]combined` is in use, and
> - is likely only useful if filename changes are detected (i.e.
> - when either rename or copy detection have been requested).
> -
>
> :git-log: 1
> include::diff-options.txt[]
> diff --git a/Documentation/git-show.txt b/Documentation/git-show.txt
> index fcf528c1b30d..abe58ce5d3a8 100644
> --- a/Documentation/git-show.txt
> +++ b/Documentation/git-show.txt
> @@ -45,8 +45,12 @@ include::pretty-options.txt[]
> include::pretty-formats.txt[]
>
>
> -COMMON DIFF OPTIONS
> --------------------
> +DIFF FORMATTING
> +---------------
> +
> +By default, `git show` does not generate any diff output. The options
> +below can be used to show the changes made by each commit.
> +
This is not right, `git show` generates diff output by default for
both normal commits and merge commits -- it defaults to -p --cc (see
show_setup_revisions_tweak() of builtin/log.c). Also see earlier in
git-show.txt where it says
For commits it shows the log message and textual diff. It also presents
the merge commit in a special format as produced by git diff-tree --cc.
> :git-log: 1
> include::diff-options.txt[]
...and the included text will contain the repeated claim that no diffs
are shown by default for merge commits, which is true for `git log`
but not `git show`.
next prev parent reply other threads:[~2020-12-03 16:48 UTC|newest]
Thread overview: 232+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-11-01 19:33 [PATCH 00/26] git-log: implement new --diff-merge options Sergey Organov
2020-11-01 19:33 ` [PATCH 01/26] revision: factor out parsing of diff-merge related options Sergey Organov
2020-11-01 19:33 ` [PATCH 02/26] revision: factor out setup of diff-merge related settings Sergey Organov
2020-11-01 19:33 ` [PATCH 03/26] revision: factor out initialization " Sergey Organov
2020-11-01 19:33 ` [PATCH 04/26] revision: provide implementation for diff merges tweaks Sergey Organov
2020-11-01 19:33 ` [PATCH 05/26] revision: move diff merges functions to its own diff-merges.c Sergey Organov
2020-11-01 19:33 ` [PATCH 06/26] diff-merges: rename all functions to have common prefix Sergey Organov
2020-11-01 19:33 ` [PATCH 07/26] diff-merges: move checks for first_parent_only out of the module Sergey Organov
2020-11-01 19:33 ` [PATCH 08/26] diff-merges: rename diff_merges_default_to_enable() to match semantics Sergey Organov
2020-11-01 19:33 ` [PATCH 09/26] diff-merges: re-arrange functions to match the order they are called in Sergey Organov
2020-11-01 19:33 ` [PATCH 10/26] diff-merges: new function diff_merges_suppress() Sergey Organov
2020-12-03 5:52 ` Elijah Newren
2020-12-03 20:06 ` Sergey Organov
2020-12-03 20:28 ` Elijah Newren
2020-12-04 17:23 ` Sergey Organov
2020-11-01 19:33 ` [PATCH 11/26] diff-merges: new function diff_merges_set_dense_combined_if_unset() Sergey Organov
2020-11-01 19:33 ` [PATCH 12/26] diff-merges: introduce revs->first_parent_merges flag Sergey Organov
2020-11-01 19:33 ` [PATCH 13/26] diff-merges: revise revs->diff flag handling Sergey Organov
2020-11-01 19:33 ` [PATCH 14/26] t4013: support test_expect_failure through ':failure' magic Sergey Organov
2020-11-01 19:33 ` [PATCH 15/26] t4013: add tests for -m failing to override -c/--cc Sergey Organov
2020-11-01 19:33 ` [PATCH 16/26] diff-merges: fix -m to properly " Sergey Organov
2020-11-01 19:33 ` [PATCH 17/26] diff-merges: split 'ignore_merges' field Sergey Organov
2020-11-02 10:48 ` Philip Oakley
2020-11-02 16:15 ` Sergey Organov
2020-11-01 19:33 ` [PATCH 18/26] diff-merges: group diff-merge flags next to each other inside 'rev_info' Sergey Organov
2020-11-01 19:33 ` [PATCH 19/26] diff-merges: get rid of now empty diff_merges_init_revs() Sergey Organov
2020-11-02 10:51 ` Philip Oakley
2020-11-01 19:33 ` [PATCH 20/26] diff-merges: refactor opt settings into separate functions Sergey Organov
2020-11-01 19:33 ` [PATCH 21/26] diff-merges: make -m/-c/--cc explicitly mutually exclusive Sergey Organov
2020-11-01 19:33 ` [PATCH 22/26] diff-merges: implement new values for --diff-merges Sergey Organov
2020-11-01 19:33 ` [PATCH 23/26] t4013: add test for --diff-merges=first-parent Sergey Organov
2020-11-01 19:33 ` [PATCH 24/26] doc/git-log: describe new --diff-merges options Sergey Organov
2020-11-01 19:33 ` [PATCH 25/26] doc/diff-generate-patch: mention new --diff-merges option Sergey Organov
2020-11-01 19:33 ` [PATCH 26/26] doc/rev-list-options: document --first-parent implies --diff-merges=first-parent Sergey Organov
2020-11-08 21:38 ` [PATCH v1 00/27] git-log: implement new --diff-merge options Sergey Organov
2020-11-08 21:38 ` [PATCH v1 01/27] revision: factor out parsing of diff-merge related options Sergey Organov
2020-12-03 0:33 ` Junio C Hamano
2020-12-03 15:16 ` Sergey Organov
2020-12-04 6:36 ` Junio C Hamano
2020-12-04 19:10 ` Sergey Organov
2020-11-08 21:38 ` [PATCH v1 02/27] revision: factor out setup of diff-merge related settings Sergey Organov
2020-12-03 0:34 ` Junio C Hamano
2020-11-08 21:38 ` [PATCH v1 03/27] revision: factor out initialization " Sergey Organov
2020-12-03 0:39 ` Junio C Hamano
2020-12-03 15:35 ` Sergey Organov
2020-11-08 21:38 ` [PATCH v1 04/27] revision: provide implementation for diff merges tweaks Sergey Organov
2020-12-03 0:51 ` Junio C Hamano
2020-12-03 5:28 ` Junio C Hamano
2020-12-03 16:03 ` Sergey Organov
2020-12-03 17:53 ` Sergey Organov
2020-11-08 21:38 ` [PATCH v1 05/27] revision: move diff merges functions to its own diff-merges.c Sergey Organov
2020-12-03 0:58 ` Junio C Hamano
2020-12-03 16:44 ` Sergey Organov
2020-11-08 21:38 ` [PATCH v1 06/27] diff-merges: rename all functions to have common prefix Sergey Organov
2020-12-03 0:52 ` Junio C Hamano
2020-12-03 17:49 ` Sergey Organov
2020-11-08 21:38 ` [PATCH v1 07/27] diff-merges: move checks for first_parent_only out of the module Sergey Organov
2020-12-03 1:09 ` Junio C Hamano
2020-12-03 20:22 ` Sergey Organov
2020-11-08 21:38 ` [PATCH v1 08/27] diff-merges: rename diff_merges_default_to_enable() to match semantics Sergey Organov
2020-11-08 21:38 ` [PATCH v1 09/27] diff-merges: re-arrange functions to match the order they are called in Sergey Organov
2020-12-03 5:52 ` Elijah Newren
2020-12-03 15:41 ` Sergey Organov
2020-11-08 21:38 ` [PATCH v1 10/27] diff-merges: new function diff_merges_suppress() Sergey Organov
2020-11-08 21:38 ` [PATCH v1 11/27] diff-merges: new function diff_merges_set_dense_combined_if_unset() Sergey Organov
2020-11-08 21:38 ` [PATCH v1 12/27] diff-merges: introduce revs->first_parent_merges flag Sergey Organov
2020-11-08 21:38 ` [PATCH v1 13/27] diff-merges: revise revs->diff flag handling Sergey Organov
2020-11-08 21:38 ` [PATCH v1 14/27] t4013: support test_expect_failure through ':failure' magic Sergey Organov
2020-11-08 21:38 ` [PATCH v1 15/27] t4013: add tests for -m failing to override -c/--cc Sergey Organov
2020-11-08 21:38 ` [PATCH v1 16/27] diff-merges: fix -m to properly " Sergey Organov
2020-11-08 21:38 ` [PATCH v1 17/27] diff-merges: split 'ignore_merges' field Sergey Organov
2020-11-08 21:38 ` [PATCH v1 18/27] diff-merges: group diff-merge flags next to each other inside 'rev_info' Sergey Organov
2020-11-08 21:38 ` [PATCH v1 19/27] diff-merges: get rid of now empty diff_merges_init_revs() Sergey Organov
2020-11-08 21:38 ` [PATCH v1 20/27] diff-merges: refactor opt settings into separate functions Sergey Organov
2020-11-08 21:38 ` [PATCH v1 21/27] diff-merges: make -m/-c/--cc explicitly mutually exclusive Sergey Organov
2020-11-08 21:38 ` [PATCH v1 22/27] diff-merges: implement new values for --diff-merges Sergey Organov
2020-11-08 21:38 ` [PATCH v1 23/27] t4013: add test for --diff-merges=first-parent Sergey Organov
2020-11-08 21:38 ` [PATCH v1 24/27] doc/git-log: describe new --diff-merges options Sergey Organov
2020-12-03 6:09 ` Elijah Newren
2020-12-03 19:34 ` Sergey Organov
2020-12-03 20:22 ` Elijah Newren
2020-12-04 17:34 ` Sergey Organov
2020-12-04 18:33 ` Elijah Newren
2020-12-04 19:58 ` Sergey Organov
2020-12-04 20:01 ` Elijah Newren
2020-11-08 21:38 ` [PATCH v1 25/27] doc/diff-generate-patch: mention new --diff-merges option Sergey Organov
2020-11-08 21:38 ` [PATCH v1 26/27] doc/rev-list-options: document --first-parent implies --diff-merges=first-parent Sergey Organov
2020-11-08 21:38 ` [PATCH v1 27/27] doc/git-show: include --diff-merges description Sergey Organov
2020-12-03 16:47 ` Elijah Newren [this message]
2020-12-03 19:52 ` Sergey Organov
2020-12-03 7:54 ` [PATCH v1 00/27] git-log: implement new --diff-merge options Elijah Newren
2020-12-03 19:48 ` Sergey Organov
2020-12-03 20:39 ` Elijah Newren
2020-12-04 19:23 ` Sergey Organov
2020-12-05 17:49 ` Elijah Newren
2020-12-05 19:44 ` Sergey Organov
2020-12-05 20:09 ` Elijah Newren
2020-12-06 16:39 ` Sergey Organov
2020-12-08 20:07 ` [PATCH 00/26] " Sergey Organov
2020-12-08 20:52 ` Elijah Newren
2020-12-08 22:30 ` Sergey Organov
2020-12-08 23:11 ` Elijah Newren
2020-12-09 1:17 ` Junio C Hamano
2020-12-09 3:06 ` Elijah Newren
2020-12-09 3:22 ` Junio C Hamano
2020-12-09 3:31 ` Elijah Newren
2020-12-09 4:18 ` Junio C Hamano
2020-12-09 4:54 ` Elijah Newren
2020-12-09 5:24 ` Junio C Hamano
2020-12-09 6:40 ` Junio C Hamano
2020-12-09 14:08 ` Sergey Organov
2020-12-09 20:53 ` Junio C Hamano
2020-12-09 19:44 ` Sergey Organov
2020-12-10 6:12 ` Junio C Hamano
2020-12-10 7:26 ` Elijah Newren
2020-12-10 20:10 ` Sergey Organov
2020-12-10 21:15 ` Junio C Hamano
2020-12-10 21:26 ` Junio C Hamano
2020-12-09 13:34 ` Sergey Organov
2020-12-16 18:48 ` [PATCH v2 00/33] " Sergey Organov
2020-12-16 18:48 ` [PATCH v2 01/33] revision: factor out parsing of diff-merge related options Sergey Organov
2020-12-16 18:48 ` [PATCH v2 02/33] revision: factor out setup of diff-merge related settings Sergey Organov
2020-12-16 18:48 ` [PATCH v2 03/33] revision: factor out initialization " Sergey Organov
2020-12-16 18:49 ` [PATCH v2 04/33] revision: provide implementation for diff merges tweaks Sergey Organov
2020-12-16 18:49 ` [PATCH v2 05/33] revision: move diff merges functions to its own diff-merges.c Sergey Organov
2020-12-16 18:49 ` [PATCH v2 06/33] diff-merges: rename all functions to have common prefix Sergey Organov
2020-12-16 18:49 ` [PATCH v2 07/33] diff-merges: move checks for first_parent_only out of the module Sergey Organov
2020-12-16 18:49 ` [PATCH v2 08/33] diff-merges: rename diff_merges_default_to_enable() to match semantics Sergey Organov
2020-12-16 18:49 ` [PATCH v2 09/33] diff-merges: re-arrange functions to match the order they are called in Sergey Organov
2020-12-16 18:49 ` [PATCH v2 10/33] diff-merges: new function diff_merges_suppress() Sergey Organov
2020-12-16 18:49 ` [PATCH v2 11/33] diff-merges: new function diff_merges_set_dense_combined_if_unset() Sergey Organov
2020-12-16 18:49 ` [PATCH v2 12/33] diff-merges: introduce revs->first_parent_merges flag Sergey Organov
2020-12-16 18:49 ` [PATCH v2 13/33] diff-merges: revise revs->diff flag handling Sergey Organov
2020-12-16 18:49 ` [PATCH v2 14/33] t4013: support test_expect_failure through ':failure' magic Sergey Organov
2020-12-16 18:49 ` [PATCH v2 15/33] t4013: add tests for -m failing to override -c/--cc Sergey Organov
2020-12-16 18:49 ` [PATCH v2 16/33] diff-merges: fix -m to properly " Sergey Organov
2020-12-16 18:49 ` [PATCH v2 17/33] diff-merges: split 'ignore_merges' field Sergey Organov
2020-12-16 18:49 ` [PATCH v2 18/33] diff-merges: group diff-merge flags next to each other inside 'rev_info' Sergey Organov
2020-12-16 18:49 ` [PATCH v2 19/33] diff-merges: get rid of now empty diff_merges_init_revs() Sergey Organov
2020-12-16 18:49 ` [PATCH v2 20/33] diff-merges: refactor opt settings into separate functions Sergey Organov
2020-12-16 18:49 ` [PATCH v2 21/33] diff-merges: make -m/-c/--cc explicitly mutually exclusive Sergey Organov
2020-12-16 18:49 ` [PATCH v2 22/33] diff-merges: implement new values for --diff-merges Sergey Organov
2020-12-18 5:39 ` Elijah Newren
2020-12-18 14:12 ` Sergey Organov
2020-12-18 16:42 ` Elijah Newren
2020-12-18 21:00 ` Sergey Organov
2020-12-16 18:49 ` [PATCH v2 23/33] diff-merges: fix style of functions definitions Sergey Organov
2020-12-18 5:42 ` Elijah Newren
2020-12-18 13:41 ` Sergey Organov
2020-12-18 16:12 ` Elijah Newren
2020-12-18 21:23 ` Sergey Organov
2020-12-18 22:56 ` Elijah Newren
2020-12-19 1:00 ` Felipe Contreras
2020-12-19 11:59 ` Sergey Organov
2020-12-20 19:15 ` Sergey Organov
2020-12-21 3:09 ` Felipe Contreras
2020-12-19 1:41 ` Junio C Hamano
2020-12-16 18:49 ` [PATCH v2 24/33] diff-merges: handle imply -p on -c/--cc logic for log.c Sergey Organov
2020-12-18 6:00 ` Elijah Newren
2020-12-18 14:01 ` Sergey Organov
2020-12-18 16:37 ` Elijah Newren
2020-12-18 21:45 ` Sergey Organov
2020-12-18 22:12 ` Elijah Newren
2020-12-18 22:17 ` Sergey Organov
2020-12-16 18:49 ` [PATCH v2 25/33] diff-merges: do not imply -p for new options Sergey Organov
2020-12-16 18:49 ` [PATCH v2 26/33] diff-merges: let new options enable diff without -p Sergey Organov
2020-12-18 6:12 ` Elijah Newren
2020-12-18 14:42 ` Sergey Organov
2020-12-18 17:01 ` Elijah Newren
2020-12-18 20:32 ` Sergey Organov
2020-12-18 22:06 ` Elijah Newren
2020-12-18 22:19 ` Sergey Organov
2020-12-18 20:53 ` Sergey Organov
2020-12-19 12:11 ` Sergey Organov
2020-12-19 13:35 ` Felipe Contreras
2020-12-19 16:23 ` Sergey Organov
2020-12-20 19:07 ` Sergey Organov
2020-12-19 13:36 ` Felipe Contreras
2020-12-19 16:19 ` Sergey Organov
2020-12-16 18:49 ` [PATCH v2 27/33] diff-merges: add old mnemonic counterparts to --diff-merges Sergey Organov
2020-12-16 18:49 ` [PATCH v2 28/33] diff-merges: add '--diff-merges=1' as synonym for 'first-parent' Sergey Organov
2020-12-18 6:19 ` Elijah Newren
2020-12-18 14:45 ` Sergey Organov
2020-12-16 18:49 ` [PATCH v2 29/33] doc/git-log: describe new --diff-merges options Sergey Organov
2020-12-18 5:53 ` Elijah Newren
2020-12-18 16:05 ` Sergey Organov
2020-12-18 17:25 ` Elijah Newren
2020-12-18 22:11 ` Sergey Organov
2020-12-18 22:28 ` Elijah Newren
2020-12-16 18:49 ` [PATCH v2 30/33] doc/diff-generate-patch: mention new --diff-merges option Sergey Organov
2020-12-16 18:49 ` [PATCH v2 31/33] doc/rev-list-options: document --first-parent changes merges format Sergey Organov
2020-12-16 18:49 ` [PATCH v2 32/33] doc/git-show: include --diff-merges description Sergey Organov
2020-12-16 18:49 ` [PATCH v2 33/33] t4013: add tests for --diff-merges=first-parent Sergey Organov
2020-12-18 6:54 ` [PATCH v2 00/33] git-log: implement new --diff-merge options Elijah Newren
2020-12-18 13:39 ` Sergey Organov
2020-12-21 15:19 ` [PATCH v3 00/32] " Sergey Organov
2020-12-21 15:19 ` [PATCH v3 01/32] revision: factor out parsing of diff-merge related options Sergey Organov
2020-12-21 15:19 ` [PATCH v3 02/32] revision: factor out setup of diff-merge related settings Sergey Organov
2020-12-21 15:19 ` [PATCH v3 03/32] revision: factor out initialization " Sergey Organov
2020-12-21 15:19 ` [PATCH v3 04/32] revision: provide implementation for diff merges tweaks Sergey Organov
2020-12-21 15:19 ` [PATCH v3 05/32] revision: move diff merges functions to its own diff-merges.c Sergey Organov
2020-12-21 15:19 ` [PATCH v3 06/32] diff-merges: rename all functions to have common prefix Sergey Organov
2020-12-21 15:19 ` [PATCH v3 07/32] diff-merges: move checks for first_parent_only out of the module Sergey Organov
2020-12-21 15:19 ` [PATCH v3 08/32] diff-merges: rename diff_merges_default_to_enable() to match semantics Sergey Organov
2020-12-21 15:19 ` [PATCH v3 09/32] diff-merges: re-arrange functions to match the order they are called in Sergey Organov
2020-12-21 15:19 ` [PATCH v3 10/32] diff-merges: new function diff_merges_suppress() Sergey Organov
2020-12-21 15:19 ` [PATCH v3 11/32] diff-merges: new function diff_merges_set_dense_combined_if_unset() Sergey Organov
2020-12-21 15:19 ` [PATCH v3 12/32] diff-merges: introduce revs->first_parent_merges flag Sergey Organov
2020-12-21 15:19 ` [PATCH v3 13/32] diff-merges: handle imply -p on -c/--cc logic for log.c Sergey Organov
2020-12-21 15:19 ` [PATCH v3 14/32] diff-merges: revise revs->diff flag handling Sergey Organov
2020-12-21 15:19 ` [PATCH v3 15/32] t4013: support test_expect_failure through ':failure' magic Sergey Organov
2020-12-21 15:19 ` [PATCH v3 16/32] t4013: add tests for -m failing to override -c/--cc Sergey Organov
2020-12-21 15:19 ` [PATCH v3 17/32] diff-merges: fix -m to properly " Sergey Organov
2020-12-21 15:19 ` [PATCH v3 18/32] diff-merges: split 'ignore_merges' field Sergey Organov
2020-12-21 15:19 ` [PATCH v3 19/32] diff-merges: group diff-merge flags next to each other inside 'rev_info' Sergey Organov
2020-12-21 15:19 ` [PATCH v3 20/32] diff-merges: get rid of now empty diff_merges_init_revs() Sergey Organov
2020-12-21 15:19 ` [PATCH v3 21/32] diff-merges: refactor opt settings into separate functions Sergey Organov
2020-12-21 15:19 ` [PATCH v3 22/32] diff-merges: make -m/-c/--cc explicitly mutually exclusive Sergey Organov
2020-12-21 15:19 ` [PATCH v3 23/32] diff-merges: implement new values for --diff-merges Sergey Organov
2020-12-21 15:19 ` [PATCH v3 24/32] diff-merges: do not imply -p for new options Sergey Organov
2020-12-21 15:19 ` [PATCH v3 25/32] diff-merges: let new options enable diff without -p Sergey Organov
2020-12-21 18:40 ` Felipe Contreras
2020-12-21 20:07 ` Sergey Organov
2020-12-21 15:19 ` [PATCH v3 26/32] diff-merges: add old mnemonic counterparts to --diff-merges Sergey Organov
2020-12-21 15:19 ` [PATCH v3 27/32] diff-merges: add '--diff-merges=1' as synonym for 'first-parent' Sergey Organov
2020-12-21 15:19 ` [PATCH v3 28/32] doc/git-log: describe new --diff-merges options Sergey Organov
2020-12-21 15:19 ` [PATCH v3 29/32] doc/diff-generate-patch: mention new --diff-merges option Sergey Organov
2020-12-21 15:19 ` [PATCH v3 30/32] doc/rev-list-options: document --first-parent changes merges format Sergey Organov
2020-12-21 15:19 ` [PATCH v3 31/32] doc/git-show: include --diff-merges description Sergey Organov
2020-12-21 15:20 ` [PATCH v3 32/32] t4013: add tests for --diff-merges=first-parent Sergey Organov
2021-01-16 7:01 ` [PATCH v3 00/32] git-log: implement new --diff-merge options Junio C Hamano
2021-01-16 9:17 ` Sergey Organov
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
List information: http://vger.kernel.org/majordomo-info.html
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to='CABPp-BG_YT2i_27tqkh_e4mwfkYae-zDCEYL=F+NjYQed2gKAg@mail.gmail.com' \
--to=newren@gmail.com \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
--cc=peff@peff.net \
--cc=philipoakley@iee.email \
--cc=sorganov@gmail.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.
Code repositories for project(s) associated with this public inbox
https://80x24.org/mirrors/git.git
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 read-only IMAP folder(s) and NNTP newsgroup(s).