3 .\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
4 .\" Generator: DocBook XSL Stylesheets v1.79.2 <http://docbook.sf.net/>
7 .\" Source: Git 2.48.1.157.g3b0d05c4a7
10 .TH "GIT\-MERGE" "1" "2025-01-29" "Git 2\&.48\&.1\&.157\&.g3b0d05" "Git Manual"
11 .\" -----------------------------------------------------------------
12 .\" * Define some portability stuff
13 .\" -----------------------------------------------------------------
14 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
15 .\" http://bugs.debian.org/507673
16 .\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
17 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
20 .\" -----------------------------------------------------------------
21 .\" * set default formatting
22 .\" -----------------------------------------------------------------
23 .\" disable hyphenation
25 .\" disable justification (adjust text to left margin only)
27 .\" -----------------------------------------------------------------
28 .\" * MAIN CONTENT STARTS HERE *
29 .\" -----------------------------------------------------------------
31 git-merge \- Join two or more development histories together
35 \fIgit merge\fR [\-n] [\-\-stat] [\-\-no\-commit] [\-\-squash] [\-\-[no\-]edit]
36 [\-\-no\-verify] [\-s <strategy>] [\-X <strategy\-option>] [\-S[<keyid>]]
37 [\-\-[no\-]allow\-unrelated\-histories]
38 [\-\-[no\-]rerere\-autoupdate] [\-m <msg>] [\-F <file>]
39 [\-\-into\-name <branch>] [<commit>\&...\:]
40 \fIgit merge\fR (\-\-continue | \-\-abort | \-\-quit)
44 Incorporates changes from the named commits (since the time their histories diverged from the current branch) into the current branch\&. This command is used by \fBgit\fR \fBpull\fR to incorporate changes from another repository and can be used by hand to merge changes from one branch into another\&.
46 Assume the following history exists and the current branch is \fBmaster\fR:
54 D\-\-\-E\-\-\-F\-\-\-G master
60 Then \fBgit\fR \fBmerge\fR \fBtopic\fR will replay the changes made on the \fBtopic\fR branch since it diverged from \fBmaster\fR (i\&.e\&., \fBE\fR) until its current commit (\fBC\fR) on top of \fBmaster\fR, and record the result in a new commit along with the names of the two parent commits and a log message from the user describing the changes\&. Before the operation, \fBORIG_HEAD\fR is set to the tip of the current branch (\fBC\fR)\&.
68 D\-\-\-E\-\-\-F\-\-\-G\-\-\-H master
74 A merge stops if there\(cqs a conflict that cannot be resolved automatically or if \fB\-\-no\-commit\fR was provided when initiating the merge\&. At that point you can run \fBgit\fR \fBmerge\fR \fB\-\-abort\fR or \fBgit\fR \fBmerge\fR \fB\-\-continue\fR\&.
76 \fBgit\fR \fBmerge\fR \fB\-\-abort\fR will abort the merge process and try to reconstruct the pre\-merge state\&. However, if there were uncommitted changes when the merge started (and especially if those changes were further modified after the merge was started), \fBgit\fR \fBmerge\fR \fB\-\-abort\fR will in some cases be unable to reconstruct the original (pre\-merge) changes\&. Therefore:
78 \fBWarning\fR: Running \fBgit\fR \fBmerge\fR with non\-trivial uncommitted changes is discouraged: while possible, it may leave you in a state that is hard to back out of in the case of a conflict\&.
81 \-\-commit, \-\-no\-commit
83 Perform the merge and commit the result\&. This option can be used to override \-\-no\-commit\&.
85 With \-\-no\-commit perform the merge and stop just before creating a merge commit, to give the user a chance to inspect and further tweak the merge result before committing\&.
87 Note that fast\-forward updates do not create a merge commit and therefore there is no way to stop those merges with \-\-no\-commit\&. Thus, if you want to ensure your branch is not changed or updated by the merge command, use \-\-no\-ff with \-\-no\-commit\&.
90 \-\-edit, \-e, \-\-no\-edit
92 Invoke an editor before committing successful mechanical merge to further edit the auto\-generated merge message, so that the user can explain and justify the merge\&. The
94 option can be used to accept the auto\-generated message (this is generally discouraged)\&. The
97 \fB\-e\fR) option is still useful if you are giving a draft message with the
99 option from the command line and want to edit it in the editor\&.
101 Older scripts may depend on the historical behaviour of not allowing the user to edit the merge log message\&. They will see an editor opened when they run
103 \fBmerge\fR\&. To make it easier to adjust such scripts to the updated behaviour, the environment variable
104 \fBGIT_MERGE_AUTOEDIT\fR
107 at the beginning of them\&.
112 This option determines how the merge message will be cleaned up before committing\&. See
114 for more details\&. In addition, if the
117 \fBscissors\fR, scissors will be appended to
119 before being passed on to the commit machinery in the case of a merge conflict\&.
122 \-\-ff, \-\-no\-ff, \-\-ff\-only
124 Specifies how a merge is handled when the merged\-in history is already a descendant of the current history\&.
126 is the default unless merging an annotated (and possibly signed) tag that is not stored in its natural place in the
128 hierarchy, in which case
133 \fB\-\-ff\fR, when possible resolve the merge as a fast\-forward (only update the branch pointer to match the merged branch; do not create a merge commit)\&. When not possible (when the merged\-in history is not a descendant of the current history), create a merge commit\&.
136 \fB\-\-no\-ff\fR, create a merge commit in all cases, even when the merge could instead be resolved as a fast\-forward\&.
139 \fB\-\-ff\-only\fR, resolve the merge as a fast\-forward when possible\&. When not possible, refuse to merge and exit with a non\-zero status\&.
142 \-S[<keyid>], \-\-gpg\-sign[=<keyid>], \-\-no\-gpg\-sign
144 GPG\-sign the resulting merge commit\&. The
146 argument is optional and defaults to the committer identity; if specified, it must be stuck to the option without a space\&.
147 \fB\-\-no\-gpg\-sign\fR
148 is useful to countermand both
149 \fBcommit\&.gpgSign\fR
150 configuration variable, and earlier
151 \fB\-\-gpg\-sign\fR\&.
154 \-\-log[=<n>], \-\-no\-log
156 In addition to branch names, populate the log message with one\-line descriptions from at most <n> actual commits that are being merged\&. See also
157 \fBgit-fmt-merge-msg\fR(1)\&.
159 With \-\-no\-log do not list one\-line descriptions from the actual commits being merged\&.
162 \fB\-\-signoff\fR, \fB\-\-no\-signoff\fR
165 \fBSigned\-off\-by\fR
166 trailer by the committer at the end of the commit log message\&. The meaning of a signoff depends on the project to which you\(cqre committing\&. For example, it may certify that the committer has the rights to submit the work under the project\(cqs license or agrees to some contributor representation, such as a Developer Certificate of Origin\&. (See
167 \m[blue]\fBhttps://developercertificate\&.org\fR\m[]
168 for the one used by the Linux kernel and Git projects\&.) Consult the documentation or leadership of the project to which you\(cqre contributing to understand how the signoffs are used in that project\&.
171 \fB\-\-no\-signoff\fR
172 option can be used to countermand an earlier
174 option on the command line\&.
177 \-\-stat, \-n, \-\-no\-stat
179 Show a diffstat at the end of the merge\&. The diffstat is also controlled by the configuration option merge\&.stat\&.
181 With \-n or \-\-no\-stat do not show a diffstat at the end of the merge\&.
184 \-\-squash, \-\-no\-squash
186 Produce the working tree and index state as if a real merge happened (except for the merge information), but do not actually make a commit, move the
187 \fBHEAD\fR, or record
188 \fB$GIT_DIR/MERGE_HEAD\fR
192 command to create a merge commit)\&. This allows you to create a single commit on top of the current branch whose effect is the same as merging another branch (or more in case of an octopus)\&.
194 With \-\-no\-squash perform the merge and commit the result\&. This option can be used to override \-\-squash\&.
196 With \-\-squash, \-\-commit is not allowed, and will fail\&.
201 By default, the pre\-merge and commit\-msg hooks are run\&. When
203 is given, these are bypassed\&. See also
207 \-s <strategy>, \-\-strategy=<strategy>
209 Use the given merge strategy; can be supplied more than once to specify them in the order they should be tried\&. If there is no
211 option, a built\-in list of strategies is used instead (\fBort\fR
212 when merging a single head,
217 \-X <option>, \-\-strategy\-option=<option>
219 Pass merge strategy specific option through to the merge strategy\&.
222 \-\-verify\-signatures, \-\-no\-verify\-signatures
224 Verify that the tip commit of the side branch being merged is signed with a valid key, i\&.e\&. a key that has a valid uid: in the default trust model, this means the signing key has been signed by a trusted key\&. If the tip commit of the side branch is not signed with a valid key, the merge is aborted\&.
227 \-\-summary, \-\-no\-summary
229 Synonyms to \-\-stat and \-\-no\-stat; these are deprecated and will be removed in the future\&.
234 Operate quietly\&. Implies \-\-no\-progress\&.
242 \-\-progress, \-\-no\-progress
244 Turn progress on/off explicitly\&. If neither is specified, progress is shown if standard error is connected to a terminal\&. Note that not all merge strategies may support progress reporting\&.
247 \-\-autostash, \-\-no\-autostash
249 Automatically create a temporary stash entry before the operation begins, record it in the ref
250 \fBMERGE_AUTOSTASH\fR
251 and apply it after the operation ends\&. This means that you can run the operation on a dirty worktree\&. However, use with care: the final stash application after a successful merge might result in non\-trivial conflicts\&.
254 \-\-allow\-unrelated\-histories
259 command refuses to merge histories that do not share a common ancestor\&. This option can be used to override this safety when merging histories of two projects that started their lives independently\&. As that is a very rare occasion, no configuration variable to enable this by default exists and will not be added\&.
264 Set the commit message to be used for the merge commit (in case one is created)\&.
268 is specified, a shortlog of the commits being merged will be appended to the specified message\&.
272 \fBfmt\-merge\-msg\fR
273 command can be used to give a good default for automated
276 invocations\&. The automated message can include the branch description\&.
279 \-\-into\-name <branch>
281 Prepare the default merge message as if merging to the branch
282 \fI<branch>\fR, instead of the name of the real branch to which the merge is made\&.
285 \-F <file>, \-\-file=<file>
287 Read the commit message to be used for the merge commit (in case one is created)\&.
291 is specified, a shortlog of the commits being merged will be appended to the specified message\&.
294 \-\-rerere\-autoupdate, \-\-no\-rerere\-autoupdate
296 After the rerere mechanism reuses a recorded resolution on the current conflict to update the files in the working tree, allow it to also update the index with the result of resolution\&.
297 \fB\-\-no\-rerere\-autoupdate\fR
298 is a good way to double\-check what
300 did and catch potential mismerges, before committing the result to the index with a separate
305 \-\-overwrite\-ignore, \-\-no\-overwrite\-ignore
307 Silently overwrite ignored files from the merge result\&. This is the default behavior\&. Use
308 \fB\-\-no\-overwrite\-ignore\fR
314 Abort the current conflict resolution process, and try to reconstruct the pre\-merge state\&. If an autostash entry is present, apply it to the worktree\&.
316 If there were uncommitted worktree changes present when the merge started,
320 will in some cases be unable to reconstruct these changes\&. It is therefore recommended to always commit or stash your changes before running
334 \fBMERGE_AUTOSTASH\fR
335 is also present in which case
339 applies the stash entry to the worktree whereas
343 will save the stashed changes in the stash list\&.
348 Forget about the current merge in progress\&. Leave the index and the working tree as\-is\&. If
349 \fBMERGE_AUTOSTASH\fR
350 is present, the stash entry will be saved to the stash list\&.
358 stops due to conflicts you can conclude the merge by running
362 (see "HOW TO RESOLVE CONFLICTS" section below)\&.
367 Commits, usually other branch heads, to merge into our branch\&. Specifying more than one commit will create a merge with more than two parents (affectionately called an Octopus merge)\&.
369 If no commit is given from the command line, merge the remote\-tracking branches that the current branch is configured to use as its upstream\&. See also the configuration section of this manual page\&.
373 (and no other commit) is specified, the branches recorded in the \&.\fBgit/FETCH_HEAD\fR
374 file by the previous invocation of
377 for merging are merged to the current branch\&.
379 .SH "PRE\-MERGE CHECKS"
381 Before applying outside changes, you should get your own work in good shape and committed locally, so it will not be clobbered if there are conflicts\&. See also \fBgit-stash\fR(1)\&. \fBgit\fR \fBpull\fR and \fBgit\fR \fBmerge\fR will stop without doing anything when local uncommitted changes overlap with files that \fBgit\fR \fBpull\fR/\fBgit\fR \fBmerge\fR may need to update\&.
383 To avoid recording unrelated changes in the merge commit, \fBgit\fR \fBpull\fR and \fBgit\fR \fBmerge\fR will also abort if there are any changes registered in the index relative to the \fBHEAD\fR commit\&. (Special narrow exceptions to this rule may exist depending on which merge strategy is in use, but generally, the index must match HEAD\&.)
385 If all named commits are already ancestors of \fBHEAD\fR, \fBgit\fR \fBmerge\fR will exit early with the message "Already up to date\&."
386 .SH "FAST\-FORWARD MERGE"
388 Often the current branch head is an ancestor of the named commit\&. This is the most common case especially when invoked from \fBgit\fR \fBpull\fR: you are tracking an upstream repository, you have committed no local changes, and now you want to update to a newer upstream revision\&. In this case, a new commit is not needed to store the combined history; instead, the \fBHEAD\fR (along with the index) is updated to point at the named commit, without creating an extra merge commit\&.
390 This behavior can be suppressed with the \fB\-\-no\-ff\fR option\&.
393 Except in a fast\-forward merge (see above), the branches to be merged must be tied together by a merge commit that has both of them as its parents\&.
395 A merged version reconciling the changes from all branches to be merged is committed, and your \fBHEAD\fR, index, and working tree are updated to it\&. It is possible to have modifications in the working tree as long as they do not overlap; the update will preserve them\&.
397 When it is not obvious how to reconcile the changes, the following happens:
409 pointer stays the same\&.
422 ref is set to point to the other branch head\&.
433 Paths that merged cleanly are updated both in the index file and in your working tree\&.
444 For conflicting paths, the index file records up to three versions: stage 1 stores the version from the common ancestor, stage 2 from
445 \fBHEAD\fR, and stage 3 from
447 (you can inspect the stages with
450 \fB\-u\fR)\&. The working tree files contain the result of the merge operation; i\&.e\&. 3\-way merge results with familiar conflict markers <<<
465 is written, pointing to a tree corresponding to the current content of the working tree (including conflict markers for textual conflicts)\&. Note that this ref is only written when the
467 merge strategy is used (the default)\&.
478 No other changes are made\&. In particular, the local modifications you had before you started merge will stay the same and the index entries for them stay as they were, i\&.e\&. matching
482 If you tried a merge which resulted in complex conflicts and want to start over, you can recover with \fBgit\fR \fBmerge\fR \fB\-\-abort\fR\&.
485 When merging an annotated (and possibly signed) tag, Git always creates a merge commit even if a fast\-forward merge is possible, and the commit message template is prepared with the tag message\&. Additionally, if the tag is signed, the signature check is reported as a comment in the message template\&. See also \fBgit-tag\fR(1)\&.
487 When you want to just integrate with the work leading to the commit that happens to be tagged, e\&.g\&. synchronizing with an upstream release point, you may not want to make an unnecessary merge commit\&.
489 In such a case, you can "unwrap" the tag yourself before feeding it to \fBgit\fR \fBmerge\fR, or pass \fB\-\-ff\-only\fR when you do not have any work on your own\&. e\&.g\&.
496 git merge v1\&.2\&.3^0
497 git merge \-\-ff\-only v1\&.2\&.3
502 .SH "HOW CONFLICTS ARE PRESENTED"
504 During a merge, the working tree files are updated to reflect the result of the merge\&. Among the changes made to the common ancestor\(cqs version, non\-overlapping ones (that is, you changed an area of the file while the other side left that area intact, or vice versa) are incorporated in the final result verbatim\&. When both sides made changes to the same area, however, Git cannot randomly pick one side over the other, and asks you to resolve it by leaving what both sides did to that area\&.
506 By default, Git uses the same style as the one used by the "merge" program from the RCS suite to present such a conflicted hunk, like this:
512 Here are lines that are either unchanged from the common
513 ancestor, or cleanly resolved because only one side changed,
514 or cleanly resolved because both sides changed the same way\&.
515 <<<<<<< yours:sample\&.txt
516 Conflict resolution is hard;
517 let\*(Aqs go shopping\&.
519 Git makes conflict resolution easy\&.
520 >>>>>>> theirs:sample\&.txt
521 And here is another line that is cleanly resolved or unmodified\&.
527 The area where a pair of conflicting changes happened is marked with markers <<<<<<<, \fB=======\fR, and >>>>>>>\&. The part before the \fB=======\fR is typically your side, and the part afterwards is typically their side\&.
529 The default format does not show what the original said in the conflicting area\&. You cannot tell how many lines are deleted and replaced with Barbie\(cqs remark on your side\&. The only thing you can tell is that your side wants to say it is hard and you\(cqd prefer to go shopping, while the other side wants to claim it is easy\&.
531 An alternative style can be used by setting the \fBmerge\&.conflictStyle\fR configuration variable to either "diff3" or "zdiff3"\&. In "diff3" style, the above conflict may look like this:
537 Here are lines that are either unchanged from the common
538 ancestor, or cleanly resolved because only one side changed,
539 <<<<<<< yours:sample\&.txt
540 or cleanly resolved because both sides changed the same way\&.
541 Conflict resolution is hard;
542 let\*(Aqs go shopping\&.
543 ||||||| base:sample\&.txt
544 or cleanly resolved because both sides changed identically\&.
545 Conflict resolution is hard\&.
547 or cleanly resolved because both sides changed the same way\&.
548 Git makes conflict resolution easy\&.
549 >>>>>>> theirs:sample\&.txt
550 And here is another line that is cleanly resolved or unmodified\&.
556 while in "zdiff3" style, it may look like this:
562 Here are lines that are either unchanged from the common
563 ancestor, or cleanly resolved because only one side changed,
564 or cleanly resolved because both sides changed the same way\&.
565 <<<<<<< yours:sample\&.txt
566 Conflict resolution is hard;
567 let\*(Aqs go shopping\&.
568 ||||||| base:sample\&.txt
569 or cleanly resolved because both sides changed identically\&.
570 Conflict resolution is hard\&.
572 Git makes conflict resolution easy\&.
573 >>>>>>> theirs:sample\&.txt
574 And here is another line that is cleanly resolved or unmodified\&.
580 In addition to the <<<<<<<, \fB=======\fR, and >>>>>>> markers, it uses another ||||||| marker that is followed by the original text\&. You can tell that the original just stated a fact, and your side simply gave in to that statement and gave up, while the other side tried to have a more positive attitude\&. You can sometimes come up with a better resolution by viewing the original\&.
581 .SH "HOW TO RESOLVE CONFLICTS"
583 After seeing a conflict, you can do two things:
593 Decide not to merge\&. The only clean\-ups you need are to reset the index file to the
595 commit to reverse 2\&. and to clean up working tree changes made by 2\&. and 3\&.;
599 can be used for this\&.
610 Resolve the conflicts\&. Git will mark the conflicts in the working tree\&. Edit the files into shape and
613 them to the index\&. Use
620 to seal the deal\&. The latter command checks whether there is a (interrupted) merge in progress before calling
625 You can work through the conflict with a number of tools:
638 to launch a graphical mergetool which will work through the merge with you\&.
652 will show a three\-way diff, highlighting changes from both the
660 will show what changes you\(cqve made so far to resolve textual conflicts\&.
671 Look at the diffs from each branch\&.
677 will show diffs first for the
692 Look at the originals\&.
696 shows the common ancestor,
724 on top of the current branch, making an octopus merge:
730 $ git merge fixes enhancements
747 into the current branch, using
755 $ git merge \-s ours obsolete
772 into the current branch, but do not make a new commit automatically:
778 $ git merge \-\-no\-commit maint
784 This can be used when you want to include further changes to the merge, or want to write your own merge commit message\&.
786 You should refrain from abusing this option to sneak substantial changes into a merge commit\&. Small fixups like bumping release/version name would be acceptable\&.
788 .SH "MERGE STRATEGIES"
790 The merge mechanism (\fBgit\fR \fBmerge\fR and \fBgit\fR \fBpull\fR commands) allows the backend \fImerge strategies\fR to be chosen with \fB\-s\fR option\&. Some strategies can also take their own options, which can be passed by giving \fB\-X\fR\fI<option>\fR arguments to \fBgit\fR \fBmerge\fR and/or \fBgit\fR \fBpull\fR\&.
794 This is the default merge strategy when pulling or merging one branch\&. This strategy can only resolve two heads using a 3\-way merge algorithm\&. When there is more than one common ancestor that can be used for 3\-way merge, it creates a merged tree of the common ancestors and uses that as the reference tree for the 3\-way merge\&. This has been reported to result in fewer merge conflicts without causing mismerges by tests done on actual merge commits taken from Linux 2\&.6 kernel development history\&. Additionally this strategy can detect and handle merges involving renames\&. It does not make use of detected copies\&. The name for this algorithm is an acronym ("Ostensibly Recursive\(cqs Twin") and came from the fact that it was written as a replacement for the previous default algorithm,
799 strategy can take the following options:
803 This option forces conflicting hunks to be auto\-resolved cleanly by favoring
805 version\&. Changes from the other tree that do not conflict with our side are reflected in the merge result\&. For a binary file, the entire contents are taken from our side\&.
807 This should not be confused with the
809 merge strategy, which does not even look at what the other tree contains at all\&. It discards everything the other tree did, declaring
811 history contains all that happened in it\&.
816 This is the opposite of
817 \fIours\fR; note that, unlike
818 \fIours\fR, there is no
820 merge strategy to confuse this merge option with\&.
823 ignore\-space\-change, ignore\-all\-space, ignore\-space\-at\-eol, ignore\-cr\-at\-eol
825 Treats lines with the indicated type of whitespace change as unchanged for the sake of a three\-way merge\&. Whitespace changes mixed with other changes to a line are not ignored\&. See also
829 \fB\-\-ignore\-space\-at\-eol\fR, and
830 \fB\-\-ignore\-cr\-at\-eol\fR\&.
842 version only introduces whitespace changes to a line,
857 version introduces whitespace changes but
859 version includes a substantial change,
872 Otherwise, the merge proceeds in the usual way\&.
878 This runs a virtual check\-out and check\-in of all three stages of a file when resolving a three\-way merge\&. This option is meant to be used when merging branches with different clean filters or end\-of\-line normalization rules\&. See "Merging branches with differing checkin/checkout attributes" in
879 \fBgitattributes\fR(5)
887 option\&. This overrides the
888 \fBmerge\&.renormalize\fR
889 configuration variable\&.
894 Turn on rename detection, optionally setting the similarity threshold\&. This is the default\&. This overrides the
895 \fImerge\&.renames\fR
896 configuration variable\&. See also
898 \fB\-\-find\-renames\fR\&.
901 rename\-threshold=<n>
903 Deprecated synonym for
904 \fBfind\-renames=\fR\fI<n>\fR\&.
909 This option is a more advanced form of
911 strategy, where the strategy makes a guess on how two trees must be shifted to match with each other when merging\&. Instead, the specified path is prefixed (or stripped from the beginning) to make the shape of two trees to match\&.
917 This can only resolve two heads using a 3\-way merge algorithm\&. When there is more than one common ancestor that can be used for 3\-way merge, it creates a merged tree of the common ancestors and uses that as the reference tree for the 3\-way merge\&. This has been reported to result in fewer merge conflicts without causing mismerges by tests done on actual merge commits taken from Linux 2\&.6 kernel development history\&. Additionally this can detect and handle merges involving renames\&. It does not make use of detected copies\&. This was the default strategy for resolving two heads from Git v0\&.99\&.9k until v2\&.33\&.0\&.
921 strategy takes the same options as
922 \fIort\fR\&. However, there are three additional options that
924 ignores (not documented above) that are potentially useful with the
930 Deprecated synonym for
931 \fBdiff\-algorithm=patience\fR\&.
934 diff\-algorithm=[patience|minimal|histogram|myers]
936 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
938 \fB\-\-diff\-algorithm\fR\&. Note that
941 \fBdiff\-algorithm=histogram\fR, while
944 \fBdiff\&.algorithm\fR
950 Turn off rename detection\&. This overrides the
951 \fBmerge\&.renames\fR
952 configuration variable\&. See also
954 \fB\-\-no\-renames\fR\&.
960 This can only resolve two heads (i\&.e\&. the current branch and another branch you pulled from) using a 3\-way merge algorithm\&. It tries to carefully detect criss\-cross merge ambiguities\&. It does not handle renames\&.
965 This resolves cases with more than two heads, but refuses to do a complex merge that needs manual resolution\&. It is primarily meant to be used for bundling topic branch heads together\&. This is the default merge strategy when pulling or merging more than one branch\&.
970 This resolves any number of heads, but the resulting tree of the merge is always that of the current branch head, effectively ignoring all changes from all other branches\&. It is meant to be used to supersede old development history of side branches\&. Note that this is different from the \-Xours option to the
979 strategy\&. When merging trees A and B, if B corresponds to a subtree of A, B is first adjusted to match the tree structure of A, instead of reading the trees at the same level\&. This adjustment is also done to the common ancestor tree\&.
982 With the strategies that use 3\-way merge (including the default, \fIort\fR), if a change is made on both branches, but later reverted on one of the branches, that change will be present in the merged result; some people find this behavior confusing\&. It occurs because only the heads and the merge base are considered when performing a merge, not the individual commits\&. The merge algorithm therefore considers the reverted change as no change at all, and substitutes the changed version instead\&.
985 branch\&.<name>\&.mergeOptions
987 Sets default options for merging into branch <name>\&. The syntax and supported options are the same as those of
989 \fBmerge\fR, but option values containing whitespace characters are currently not supported\&.
992 Everything above this line in this section isn\(cqt included from the \fBgit-config\fR(1) documentation\&. The content that follows is the same as what\(cqs found there:
994 merge\&.conflictStyle
996 Specify the style in which conflicted hunks are written out to working tree files upon merge\&. The default is "merge", which shows a <<<<<<< conflict marker, changes made by one side, a
998 marker, changes made by the other side, and then a >>>>>>> marker\&. An alternate style, "diff3", adds a ||||||| marker and the original text before the
1000 marker\&. The "merge" style tends to produce smaller conflict regions than diff3, both because of the exclusion of the original text, and because when a subset of lines match on the two sides, they are just pulled out of the conflict region\&. Another alternate style, "zdiff3", is similar to diff3 but removes matching lines on the two sides from the conflict region when those matching lines appear near either the beginning or end of a conflict region\&.
1003 merge\&.defaultToUpstream
1005 If merge is called without any commit argument, merge the upstream branches configured for the current branch by using their last observed values stored in their remote\-tracking branches\&. The values of the
1006 \fBbranch\&.\fR<current
1007 \fBbranch\fR>\fB\&.merge\fR
1008 that name the branches at the remote named by
1009 \fBbranch\&.\fR<current
1010 \fBbranch\fR>\fB\&.remote\fR
1011 are consulted, and then they are mapped via
1012 \fBremote\&.\fR\fI<remote>\fR\fB\&.fetch\fR
1013 to their corresponding remote\-tracking branches, and the tips of these tracking branches are merged\&. Defaults to true\&.
1018 By default, Git does not create an extra merge commit when merging a commit that is a descendant of the current commit\&. Instead, the tip of the current branch is fast\-forwarded\&. When set to
1019 \fBfalse\fR, this variable tells Git to create an extra merge commit in such a case (equivalent to giving the
1021 option from the command line)\&. When set to
1022 \fBonly\fR, only such fast\-forward merges are allowed (equivalent to giving the
1024 option from the command line)\&.
1027 merge\&.verifySignatures
1029 If true, this is equivalent to the \-\-verify\-signatures command line option\&. See
1036 In addition to branch names, populate the log message with the branch description text associated with them\&. Defaults to false\&.
1041 In addition to branch names, populate the log message with at most the specified number of one\-line descriptions from the actual commits that are being merged\&. Defaults to false, and true is a synonym for 20\&.
1044 merge\&.suppressDest
1046 By adding a glob that matches the names of integration branches to this multi\-valued configuration variable, the default merge message computed for merges into these integration branches will omit "into <branch name>" from its title\&.
1048 An element with an empty value can be used to clear the list of globs accumulated from previous configuration entries\&. When there is no
1049 \fBmerge\&.suppressDest\fR
1050 variable defined, the default value of
1052 is used for backward compatibility\&.
1057 The number of files to consider in the exhaustive portion of rename detection during a merge\&. If not specified, defaults to the value of diff\&.renameLimit\&. If neither merge\&.renameLimit nor diff\&.renameLimit are specified, currently defaults to 7000\&. This setting has no effect if rename detection is turned off\&.
1062 Whether Git detects renames\&. If set to "false", rename detection is disabled\&. If set to "true", basic rename detection is enabled\&. Defaults to the value of diff\&.renames\&.
1065 merge\&.directoryRenames
1067 Whether Git detects directory renames, affecting what happens at merge time to new files added to a directory on one side of history when that directory was renamed on the other side of history\&. If merge\&.directoryRenames is set to "false", directory rename detection is disabled, meaning that such new files will be left behind in the old directory\&. If set to "true", directory rename detection is enabled, meaning that such new files will be moved into the new directory\&. If set to "conflict", a conflict will be reported for such paths\&. If merge\&.renames is false, merge\&.directoryRenames is ignored and treated as false\&. Defaults to "conflict"\&.
1072 Tell Git that canonical representation of files in the repository has changed over time (e\&.g\&. earlier commits record text files with CRLF line endings, but recent ones use LF line endings)\&. In such a repository, Git can convert the data 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
1073 \fBgitattributes\fR(5)\&.
1078 Whether to print the diffstat between ORIG_HEAD and the merge result at the end of the merge\&. True by default\&.
1083 When set to true, automatically create a temporary stash entry before the operation begins, and apply it after the operation ends\&. This means that you can run merge on a dirty worktree\&. However, use with care: the final stash application after a successful merge might result in non\-trivial conflicts\&. This option can be overridden by the
1084 \fB\-\-no\-autostash\fR
1088 \fBgit-merge\fR(1)\&. Defaults to false\&.
1093 Controls which merge tool is used by
1094 \fBgit-mergetool\fR(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\&.
1099 Controls which merge tool is used by
1100 \fBgit-mergetool\fR(1)
1101 when the \-g/\-\-gui flag is specified\&. 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\&.<guitool>\&.cmd variable is defined\&.
1105 Use Araxis Merge (requires a graphical session)
1110 Use Beyond Compare (requires a graphical session)
1115 Use Beyond Compare (requires a graphical session)
1120 Use Beyond Compare (requires a graphical session)
1125 Use Code Compare (requires a graphical session)
1130 Use DeltaWalker (requires a graphical session)
1135 Use DiffMerge (requires a graphical session)
1140 Use Diffuse (requires a graphical session)
1145 Use ECMerge (requires a graphical session)
1150 Use Emacs\*(Aq Emerge
1155 Use ExamDiff Pro (requires a graphical session)
1160 Use Guiffy\(cqs Diff Tool (requires a graphical session)
1165 Use gVim (requires a graphical session) with a custom layout (see
1168 \fBmergetool\fR\*(Aqs
1177 Use gVim (requires a graphical session) with a 2 panes layout (LOCAL and REMOTE)
1182 Use gVim (requires a graphical session) with a 3 panes layout (LOCAL, MERGED and REMOTE)
1187 Use gVim (requires a graphical session) where only the MERGED file is shown
1192 Use KDiff3 (requires a graphical session)
1197 Use Meld (requires a graphical session) with optional
1203 \fBmergetool\fR\*(Aqs
1210 Use Neovim with a custom layout (see
1213 \fBmergetool\fR\*(Aqs
1222 Use Neovim with a 2 panes layout (LOCAL and REMOTE)
1227 Use Neovim with a 3 panes layout (LOCAL, MERGED and REMOTE)
1232 Use Neovim where only the MERGED file is shown
1237 Use FileMerge (requires a graphical session)
1242 Use HelixCore P4Merge (requires a graphical session)
1247 Use Sublime Merge (requires a graphical session)
1252 Use TkDiff (requires a graphical session)
1257 Use TortoiseMerge (requires a graphical session)
1262 Use Vim with a custom layout (see
1265 \fBmergetool\fR\*(Aqs
1274 Use Vim with a 2 panes layout (LOCAL and REMOTE)
1279 Use Vim with a 3 panes layout (LOCAL, MERGED and REMOTE)
1284 Use Vim where only the MERGED file is shown
1289 Use Visual Studio Code (requires a graphical session)
1294 Use WinMerge (requires a graphical session)
1299 Use xxdiff (requires a graphical session)
1305 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\&. Can be overridden by the
1306 \fBGIT_MERGE_VERBOSITY\fR
1307 environment variable\&.
1310 merge\&.<driver>\&.name
1312 Defines a human\-readable name for a custom low\-level merge driver\&. See
1313 \fBgitattributes\fR(5)
1317 merge\&.<driver>\&.driver
1319 Defines the command that implements a custom low\-level merge driver\&. See
1320 \fBgitattributes\fR(5)
1324 merge\&.<driver>\&.recursive
1326 Names a low\-level merge driver to be used when performing an internal merge between common ancestors\&. See
1327 \fBgitattributes\fR(5)
1332 \fBgit-fmt-merge-msg\fR(1), \fBgit-pull\fR(1), \fBgitattributes\fR(5), \fBgit-reset\fR(1), \fBgit-diff\fR(1), \fBgit-ls-files\fR(1), \fBgit-add\fR(1), \fBgit-rm\fR(1), \fBgit-mergetool\fR(1)
1335 Part of the \fBgit\fR(1) suite