]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/merge-config.txt
Merge branch 'sg/t0020-conversion-fix'
[thirdparty/git.git] / Documentation / merge-config.txt
CommitLineData
da0005b8 1merge.conflictStyle::
42fc11c1
JH
2 Specify the style in which conflicted hunks are written out to
3 working tree files upon merge. The default is "merge", which
29b802aa
RW
4 shows a `<<<<<<<` conflict marker, changes made by one side,
5 a `=======` marker, changes made by the other side, and then
6 a `>>>>>>>` marker. An alternate style, "diff3", adds a `|||||||`
7 marker and the original text before the `=======` marker.
3e6c0a3f 8
93e535a5
JH
9merge.defaultToUpstream::
10 If merge is called without any commit argument, merge the upstream
11 branches configured for the current branch by using their last
a6d3bde5 12 observed values stored in their remote-tracking branches.
93e535a5
JH
13 The values of the `branch.<current branch>.merge` that name the
14 branches at the remote named by `branch.<current branch>.remote`
15 are consulted, and then they are mapped via `remote.<remote>.fetch`
a6d3bde5 16 to their corresponding remote-tracking branches, and the tips of
93e535a5
JH
17 these tracking branches are merged.
18
f23e8dec 19merge.ff::
2de9b711 20 By default, Git does not create an extra merge commit when merging
f23e8dec
JH
21 a commit that is a descendant of the current commit. Instead, the
22 tip of the current branch is fast-forwarded. When set to `false`,
2de9b711 23 this variable tells Git to create an extra merge commit in such
f23e8dec
JH
24 a case (equivalent to giving the `--no-ff` option from the command
25 line). When set to `only`, only such fast-forward merges are
26 allowed (equivalent to giving the `--ff-only` option from the
27 command line).
28
ca779e82
HJI
29merge.verifySignatures::
30 If true, this is equivalent to the --verify-signatures command
31 line option. See linkgit:git-merge[1] for details.
32
fc0aa395 33include::fmt-merge-msg-config.txt[]
f5a84c37 34
2a2ac926
JK
35merge.renameLimit::
36 The number of files to consider when performing rename detection
37 during a merge; if not specified, defaults to the value of
a7152e9d
BP
38 diff.renameLimit. This setting has no effect if rename detection
39 is turned off.
2a2ac926 40
85b46030
BP
41merge.renames::
42 Whether and how Git detects renames. If set to "false",
43 rename detection is disabled. If set to "true", basic rename
44 detection is enabled. Defaults to the value of diff.renames.
45
f217f0e8 46merge.renormalize::
2de9b711 47 Tell Git that canonical representation of files in the
f217f0e8
EB
48 repository has changed over time (e.g. earlier commits record
49 text files with CRLF line endings, but recent ones use LF line
2de9b711 50 endings). In such a repository, Git can convert the data
f217f0e8
EB
51 recorded in commits to a canonical form before performing a
52 merge to reduce unnecessary conflicts. For more information,
53 see section "Merging branches with differing checkin/checkout
54 attributes" in linkgit:gitattributes[5].
55
42fc11c1
JH
56merge.stat::
57 Whether to print the diffstat between ORIG_HEAD and the merge result
58 at the end of the merge. True by default.
59
f5a84c37 60merge.tool::
f35ec546
DA
61 Controls which merge tool is used by linkgit:git-mergetool[1].
62 The list below shows the valid built-in values.
63 Any other value is treated as a custom merge tool and requires
64 that a corresponding mergetool.<tool>.cmd variable is defined.
65
66include::mergetools-merge.txt[]
f5a84c37
SG
67
68merge.verbosity::
69 Controls the amount of output shown by the recursive merge
70 strategy. Level 0 outputs nothing except a final error
71 message if conflicts were detected. Level 1 outputs only
72 conflicts, 2 outputs conflicts and file changes. Level 5 and
73 above outputs debugging information. The default is level 2.
eee7f4a2 74 Can be overridden by the `GIT_MERGE_VERBOSITY` environment variable.
f5a84c37
SG
75
76merge.<driver>.name::
29b802aa 77 Defines a human-readable name for a custom low-level
f5a84c37
SG
78 merge driver. See linkgit:gitattributes[5] for details.
79
80merge.<driver>.driver::
81 Defines the command that implements a custom low-level
82 merge driver. See linkgit:gitattributes[5] for details.
83
84merge.<driver>.recursive::
85 Names a low-level merge driver to be used when
86 performing an internal merge between common ancestors.
87 See linkgit:gitattributes[5] for details.