aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/git-log.txt
diff options
context:
space:
mode:
authorSergey Organov <sorganov@gmail.com>2020-12-21 18:19:59 +0300
committerJunio C Hamano <gitster@pobox.com>2020-12-21 13:47:32 -0800
commit1d24509b7b865115836982267a5e54b2f7d77c42 (patch)
tree44cf3e0bc89d3dfc755f8a859b8eaf91332f9cdc /Documentation/git-log.txt
parente58142add40e0db354eaed9554d1b0c871e23f7d (diff)
downloadgit-1d24509b7b865115836982267a5e54b2f7d77c42.tar.gz
doc/git-show: include --diff-merges description
Move description of --diff-merges option from git-log.txt to diff-options.txt so that it is included in the git-show help. Signed-off-by: Sergey Organov <sorganov@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/git-log.txt')
-rw-r--r--Documentation/git-log.txt51
1 files changed, 1 insertions, 50 deletions
diff --git a/Documentation/git-log.txt b/Documentation/git-log.txt
index ff83dff14d..727d20e1a2 100644
--- a/Documentation/git-log.txt
+++ b/Documentation/git-log.txt
@@ -127,57 +127,8 @@ selected, nor will they match search options like `-S`. The exception
is when `--first-parent` is in use, in which case `first-parent` is
the default format.
---diff-merges=(off|none|first-parent|1|separate|m|combined|c|dense-combined|cc)::
---no-diff-merges::
- Specify diff format to be used for merge commits. Default is
- `off` unless `--first-parent` is in use, in which case
- `first-parent` is the default.
-+
---diff-merges=(off|none):::
---no-diff-merges:::
- Disable output of diffs for merge commits. Useful to override
- implied value.
-+
---diff-merges=first-parent:::
---diff-merges=1:::
- This option makes merge commits show the full diff with
- respect to the first parent only.
-+
---diff-merges=separate:::
---diff-merges=m:::
--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. `-m` doesn't produce any output without `-p`.
-+
---diff-merges=combined:::
---diff-merges=c:::
--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. `-c` implies
- `-p`.
-+
---diff-merges=dense-combined:::
---diff-merges=cc:::
---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. `--cc` implies `-p`.
-
---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
+:diff-merges-default: `off`
include::diff-options.txt[]
include::diff-generate-patch.txt[]