aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/merge-strategies.txt
diff options
context:
space:
mode:
authorElijah Newren <newren@gmail.com>2021-08-04 23:50:47 +0000
committerJunio C Hamano <gitster@pobox.com>2021-08-05 08:57:39 -0700
commite80178eac6f3513bed7ec7ead9d5b0ebfa429241 (patch)
treed99e845d83a1a716c8c8b036fbd39190afc92e35 /Documentation/merge-strategies.txt
parentb378df72ed147d346503341db06771c52cd2dbb8 (diff)
downloadgit-e80178eac6f3513bed7ec7ead9d5b0ebfa429241.tar.gz
Documentation: edit awkward references to `git merge-recursive`
A few places in the documentation referred to the "`recursive` strategy" using the phrase "`git merge-recursive`", suggesting that it was forking subprocesses to call a toplevel builtin. Perhaps that was relevant to when rebase was a shell script, but it seems like a rather indirect way to refer to the `recursive` strategy. Simplify the references. Acked-by: Derrick Stolee <dstolee@microsoft.com> Acked-by: Johannes Schindelin <johannes.schindelin@gmx.de> Signed-off-by: Elijah Newren <newren@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/merge-strategies.txt')
-rw-r--r--Documentation/merge-strategies.txt9
1 files changed, 5 insertions, 4 deletions
diff --git a/Documentation/merge-strategies.txt b/Documentation/merge-strategies.txt
index 2912de706b..5d707e952a 100644
--- a/Documentation/merge-strategies.txt
+++ b/Documentation/merge-strategies.txt
@@ -51,10 +51,11 @@ patience;;
See also linkgit:git-diff[1] `--patience`.
diff-algorithm=[patience|minimal|histogram|myers];;
- Tells 'merge-recursive' to use a different diff algorithm, which
- can help avoid mismerges that occur due to unimportant matching
- lines (such as braces from distinct functions). See also
- linkgit:git-diff[1] `--diff-algorithm`.
+ Use a different diff algorithm while merging, which can help
+ avoid mismerges that occur due to unimportant matching lines
+ (such as braces from distinct functions). See also
+ linkgit:git-diff[1] `--diff-algorithm`. Defaults to the
+ `diff.algorithm` config setting.
ignore-space-change;;
ignore-all-space;;