]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/merge-strategies.txt
merge-recursive --patience
[thirdparty/git.git] / Documentation / merge-strategies.txt
CommitLineData
bb73d73c
JL
1MERGE STRATEGIES
2----------------
3
566c5111
JH
4The merge mechanism ('git-merge' and 'git-pull' commands) allows the
5backend 'merge strategies' to be chosen with `-s` option. Some strategies
6can also take their own options, which can be passed by giving `-X<option>`
7arguments to 'git-merge' and/or 'git-pull'.
8
bb73d73c
JL
9resolve::
10 This can only resolve two heads (i.e. the current branch
4fa535a1 11 and another branch you pulled from) using a 3-way merge
bb73d73c
JL
12 algorithm. It tries to carefully detect criss-cross
13 merge ambiguities and is considered generally safe and
9688a882 14 fast.
bb73d73c
JL
15
16recursive::
4fa535a1
WC
17 This can only resolve two heads using a 3-way merge
18 algorithm. When there is more than one common
19 ancestor that can be used for 3-way merge, it creates a
9688a882 20 merged tree of the common ancestors and uses that as
bb73d73c
JL
21 the reference tree for the 3-way merge. This has been
22 reported to result in fewer merge conflicts without
23 causing mis-merges by tests done on actual merge commits
24 taken from Linux 2.6 kernel development history.
25 Additionally this can detect and handle merges involving
9688a882
JH
26 renames. This is the default merge strategy when
27 pulling or merging one branch.
566c5111
JH
28+
29The 'recursive' strategy can take the following options:
30
31ours;;
32 This option forces conflicting hunks to be auto-resolved cleanly by
33 favoring 'our' version. Changes from the other tree that do not
34 conflict with our side are reflected to the merge result.
35+
36This should not be confused with the 'ours' merge strategy, which does not
37even look at what the other tree contains at all. It discards everything
38the other tree did, declaring 'our' history contains all that happened in it.
39
40theirs;;
41 This is opposite of 'ours'.
42
58a1ece4
JF
43patience;;
44 With this option, 'merge-recursive' spends a little extra time
45 to avoid mismerges that sometimes occur due to unimportant
46 matching lines (e.g., braces from distinct functions). Use
47 this when the branches to be merged have diverged wildly.
48 See also linkgit:git-diff[1] `--patience`.
49
7610fa57
JN
50renormalize;;
51 This runs a virtual check-out and check-in of all three stages
52 of a file when resolving a three-way merge. This option is
53 meant to be used when merging branches with different clean
54 filters or end-of-line normalization rules. See "Merging
55 branches with differing checkin/checkout attributes" in
56 linkgit:gitattributes[5] for details.
57
58no-renormalize;;
59 Disables the `renormalize` option. This overrides the
60 `merge.renormalize` configuration variable.
61
566c5111
JH
62subtree[=path];;
63 This option is a more advanced form of 'subtree' strategy, where
64 the strategy makes a guess on how two trees must be shifted to
65 match with each other when merging. Instead, the specified path
66 is prefixed (or stripped from the beginning) to make the shape of
67 two trees to match.
bb73d73c
JL
68
69octopus::
4fa535a1
WC
70 This resolves cases with more than two heads, but refuses to do
71 a complex merge that needs manual resolution. It is
bb73d73c
JL
72 primarily meant to be used for bundling topic branch
73 heads together. This is the default merge strategy when
4fa535a1 74 pulling or merging more than one branch.
bb73d73c
JL
75
76ours::
d4cbaa12
TR
77 This resolves any number of heads, but the resulting tree of the
78 merge is always that of the current branch head, effectively
79 ignoring all changes from all other branches. It is meant to
bb73d73c 80 be used to supersede old development history of side
566c5111
JH
81 branches. Note that this is different from the -Xours option to
82 the 'recursive' merge strategy.
02b00e16
MV
83
84subtree::
85 This is a modified recursive strategy. When merging trees A and
86 B, if B corresponds to a subtree of A, B is first adjusted to
87 match the tree structure of A, instead of reading the trees at
88 the same level. This adjustment is also done to the common
89 ancestor tree.