2015-03-11 21:32:45 +01:00
|
|
|
merge.conflictStyle::
|
2008-11-26 20:11:18 +01:00
|
|
|
Specify the style in which conflicted hunks are written out to
|
|
|
|
working tree files upon merge. The default is "merge", which
|
2008-12-09 07:23:51 +01:00
|
|
|
shows a `<<<<<<<` conflict marker, changes made by one side,
|
|
|
|
a `=======` marker, changes made by the other side, and then
|
|
|
|
a `>>>>>>>` marker. An alternate style, "diff3", adds a `|||||||`
|
|
|
|
marker and the original text before the `=======` marker.
|
2008-04-06 03:23:44 +02:00
|
|
|
|
2011-03-24 07:48:24 +01:00
|
|
|
merge.defaultToUpstream::
|
|
|
|
If merge is called without any commit argument, merge the upstream
|
|
|
|
branches configured for the current branch by using their last
|
2012-10-23 13:34:05 +02:00
|
|
|
observed values stored in their remote-tracking branches.
|
2011-03-24 07:48:24 +01:00
|
|
|
The values of the `branch.<current branch>.merge` that name the
|
|
|
|
branches at the remote named by `branch.<current branch>.remote`
|
|
|
|
are consulted, and then they are mapped via `remote.<remote>.fetch`
|
2012-10-23 13:34:05 +02:00
|
|
|
to their corresponding remote-tracking branches, and the tips of
|
2011-03-24 07:48:24 +01:00
|
|
|
these tracking branches are merged.
|
|
|
|
|
2011-05-06 21:27:05 +02:00
|
|
|
merge.ff::
|
2013-01-21 20:17:53 +01:00
|
|
|
By default, Git does not create an extra merge commit when merging
|
2011-05-06 21:27:05 +02:00
|
|
|
a commit that is a descendant of the current commit. Instead, the
|
|
|
|
tip of the current branch is fast-forwarded. When set to `false`,
|
2013-01-21 20:17:53 +01:00
|
|
|
this variable tells Git to create an extra merge commit in such
|
2011-05-06 21:27:05 +02:00
|
|
|
a case (equivalent to giving the `--no-ff` option from the command
|
|
|
|
line). When set to `only`, only such fast-forward merges are
|
|
|
|
allowed (equivalent to giving the `--ff-only` option from the
|
|
|
|
command line).
|
|
|
|
|
2015-05-27 23:52:23 +02:00
|
|
|
include::fmt-merge-msg-config.txt[]
|
2008-04-06 03:23:42 +02:00
|
|
|
|
2008-04-30 19:23:55 +02:00
|
|
|
merge.renameLimit::
|
|
|
|
The number of files to consider when performing rename detection
|
|
|
|
during a merge; if not specified, defaults to the value of
|
|
|
|
diff.renameLimit.
|
|
|
|
|
2010-07-02 21:20:47 +02:00
|
|
|
merge.renormalize::
|
2013-01-21 20:17:53 +01:00
|
|
|
Tell Git that canonical representation of files in the
|
2010-07-02 21:20:47 +02:00
|
|
|
repository has changed over time (e.g. earlier commits record
|
|
|
|
text files with CRLF line endings, but recent ones use LF line
|
2013-01-21 20:17:53 +01:00
|
|
|
endings). In such a repository, Git can convert the data
|
2010-07-02 21:20:47 +02:00
|
|
|
recorded in commits to a canonical form before performing a
|
|
|
|
merge to reduce unnecessary conflicts. For more information,
|
|
|
|
see section "Merging branches with differing checkin/checkout
|
|
|
|
attributes" in linkgit:gitattributes[5].
|
|
|
|
|
2008-11-26 20:11:18 +01:00
|
|
|
merge.stat::
|
|
|
|
Whether to print the diffstat between ORIG_HEAD and the merge result
|
|
|
|
at the end of the merge. True by default.
|
|
|
|
|
2008-04-06 03:23:42 +02:00
|
|
|
merge.tool::
|
2013-01-28 01:52:26 +01:00
|
|
|
Controls which merge tool is used by linkgit:git-mergetool[1].
|
|
|
|
The list below shows the valid built-in values.
|
|
|
|
Any other value is treated as a custom merge tool and requires
|
|
|
|
that a corresponding mergetool.<tool>.cmd variable is defined.
|
|
|
|
|
|
|
|
include::mergetools-merge.txt[]
|
2008-04-06 03:23:42 +02:00
|
|
|
|
|
|
|
merge.verbosity::
|
|
|
|
Controls the amount of output shown by the recursive merge
|
|
|
|
strategy. Level 0 outputs nothing except a final error
|
|
|
|
message if conflicts were detected. Level 1 outputs only
|
|
|
|
conflicts, 2 outputs conflicts and file changes. Level 5 and
|
|
|
|
above outputs debugging information. The default is level 2.
|
2008-12-09 07:23:51 +01:00
|
|
|
Can be overridden by the 'GIT_MERGE_VERBOSITY' environment variable.
|
2008-04-06 03:23:42 +02:00
|
|
|
|
|
|
|
merge.<driver>.name::
|
2008-12-09 07:23:51 +01:00
|
|
|
Defines a human-readable name for a custom low-level
|
2008-04-06 03:23:42 +02:00
|
|
|
merge driver. See linkgit:gitattributes[5] for details.
|
|
|
|
|
|
|
|
merge.<driver>.driver::
|
|
|
|
Defines the command that implements a custom low-level
|
|
|
|
merge driver. See linkgit:gitattributes[5] for details.
|
|
|
|
|
|
|
|
merge.<driver>.recursive::
|
|
|
|
Names a low-level merge driver to be used when
|
|
|
|
performing an internal merge between common ancestors.
|
|
|
|
See linkgit:gitattributes[5] for details.
|