Jon Loeliger | bb73d73 | 2005-11-06 10:26:07 -0600 | [diff] [blame] | 1 | MERGE STRATEGIES |
| 2 | ---------------- |
| 3 | |
Ramkumar Ramachandra | 3c3e6f5 | 2014-03-16 18:54:56 -0400 | [diff] [blame] | 4 | The merge mechanism (`git merge` and `git pull` commands) allows the |
Junio C Hamano | 566c511 | 2008-07-18 02:43:00 -0700 | [diff] [blame] | 5 | backend 'merge strategies' to be chosen with `-s` option. Some strategies |
| 6 | can also take their own options, which can be passed by giving `-X<option>` |
Ramkumar Ramachandra | 3c3e6f5 | 2014-03-16 18:54:56 -0400 | [diff] [blame] | 7 | arguments to `git merge` and/or `git pull`. |
Junio C Hamano | 566c511 | 2008-07-18 02:43:00 -0700 | [diff] [blame] | 8 | |
Jon Loeliger | bb73d73 | 2005-11-06 10:26:07 -0600 | [diff] [blame] | 9 | resolve:: |
| 10 | This can only resolve two heads (i.e. the current branch |
Wincent Colaiuta | 4fa535a | 2009-03-25 19:23:42 +0100 | [diff] [blame] | 11 | and another branch you pulled from) using a 3-way merge |
Jon Loeliger | bb73d73 | 2005-11-06 10:26:07 -0600 | [diff] [blame] | 12 | algorithm. It tries to carefully detect criss-cross |
| 13 | merge ambiguities and is considered generally safe and |
Junio C Hamano | 9688a88 | 2005-12-08 14:04:33 -0800 | [diff] [blame] | 14 | fast. |
Jon Loeliger | bb73d73 | 2005-11-06 10:26:07 -0600 | [diff] [blame] | 15 | |
| 16 | recursive:: |
Wincent Colaiuta | 4fa535a | 2009-03-25 19:23:42 +0100 | [diff] [blame] | 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 |
Junio C Hamano | 9688a88 | 2005-12-08 14:04:33 -0800 | [diff] [blame] | 20 | merged tree of the common ancestors and uses that as |
Jon Loeliger | bb73d73 | 2005-11-06 10:26:07 -0600 | [diff] [blame] | 21 | the reference tree for the 3-way merge. This has been |
| 22 | reported to result in fewer merge conflicts without |
Albert L. Lash, IV | 13f72a1 | 2014-02-08 15:41:34 -0500 | [diff] [blame] | 23 | causing mismerges by tests done on actual merge commits |
Jon Loeliger | bb73d73 | 2005-11-06 10:26:07 -0600 | [diff] [blame] | 24 | taken from Linux 2.6 kernel development history. |
| 25 | Additionally this can detect and handle merges involving |
Junio C Hamano | 9688a88 | 2005-12-08 14:04:33 -0800 | [diff] [blame] | 26 | renames. This is the default merge strategy when |
| 27 | pulling or merging one branch. |
Junio C Hamano | 566c511 | 2008-07-18 02:43:00 -0700 | [diff] [blame] | 28 | + |
| 29 | The 'recursive' strategy can take the following options: |
| 30 | |
| 31 | ours;; |
| 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. |
Junio C Hamano | a944af1 | 2012-09-08 21:27:19 -0700 | [diff] [blame] | 35 | For a binary file, the entire contents are taken from our side. |
Junio C Hamano | 566c511 | 2008-07-18 02:43:00 -0700 | [diff] [blame] | 36 | + |
| 37 | This should not be confused with the 'ours' merge strategy, which does not |
| 38 | even look at what the other tree contains at all. It discards everything |
| 39 | the other tree did, declaring 'our' history contains all that happened in it. |
| 40 | |
| 41 | theirs;; |
Junio C Hamano | a944af1 | 2012-09-08 21:27:19 -0700 | [diff] [blame] | 42 | This is the opposite of 'ours'. |
Junio C Hamano | 566c511 | 2008-07-18 02:43:00 -0700 | [diff] [blame] | 43 | |
Justin Frankel | 58a1ece | 2010-08-26 00:50:45 -0500 | [diff] [blame] | 44 | patience;; |
| 45 | With this option, 'merge-recursive' spends a little extra time |
| 46 | to avoid mismerges that sometimes occur due to unimportant |
| 47 | matching lines (e.g., braces from distinct functions). Use |
| 48 | this when the branches to be merged have diverged wildly. |
| 49 | See also linkgit:git-diff[1] `--patience`. |
| 50 | |
John Keeping | 4db4f0f | 2013-04-05 12:37:30 +0100 | [diff] [blame] | 51 | diff-algorithm=[patience|minimal|histogram|myers];; |
| 52 | Tells 'merge-recursive' to use a different diff algorithm, which |
| 53 | can help avoid mismerges that occur due to unimportant matching |
| 54 | lines (such as braces from distinct functions). See also |
| 55 | linkgit:git-diff[1] `--diff-algorithm`. |
| 56 | |
Justin Frankel | 4e5dd04 | 2010-08-26 00:51:47 -0500 | [diff] [blame] | 57 | ignore-space-change;; |
| 58 | ignore-all-space;; |
| 59 | ignore-space-at-eol;; |
| 60 | Treats lines with the indicated type of whitespace change as |
| 61 | unchanged for the sake of a three-way merge. Whitespace |
| 62 | changes mixed with other changes to a line are not ignored. |
| 63 | See also linkgit:git-diff[1] `-b`, `-w`, and |
| 64 | `--ignore-space-at-eol`. |
| 65 | + |
| 66 | * If 'their' version only introduces whitespace changes to a line, |
| 67 | 'our' version is used; |
| 68 | * If 'our' version introduces whitespace changes but 'their' |
| 69 | version includes a substantial change, 'their' version is used; |
| 70 | * Otherwise, the merge proceeds in the usual way. |
| 71 | |
Jonathan Nieder | 7610fa5 | 2010-08-05 06:32:41 -0500 | [diff] [blame] | 72 | renormalize;; |
| 73 | This runs a virtual check-out and check-in of all three stages |
| 74 | of a file when resolving a three-way merge. This option is |
| 75 | meant to be used when merging branches with different clean |
| 76 | filters or end-of-line normalization rules. See "Merging |
| 77 | branches with differing checkin/checkout attributes" in |
| 78 | linkgit:gitattributes[5] for details. |
| 79 | |
| 80 | no-renormalize;; |
| 81 | Disables the `renormalize` option. This overrides the |
| 82 | `merge.renormalize` configuration variable. |
| 83 | |
Kevin Ballard | 10ae752 | 2010-09-27 16:58:25 -0700 | [diff] [blame] | 84 | rename-threshold=<n>;; |
| 85 | Controls the similarity threshold used for rename detection. |
| 86 | See also linkgit:git-diff[1] `-M`. |
| 87 | |
Štěpán Němec | 62b4698 | 2010-10-08 19:31:15 +0200 | [diff] [blame] | 88 | subtree[=<path>];; |
Junio C Hamano | 566c511 | 2008-07-18 02:43:00 -0700 | [diff] [blame] | 89 | This option is a more advanced form of 'subtree' strategy, where |
| 90 | the strategy makes a guess on how two trees must be shifted to |
| 91 | match with each other when merging. Instead, the specified path |
| 92 | is prefixed (or stripped from the beginning) to make the shape of |
| 93 | two trees to match. |
Jon Loeliger | bb73d73 | 2005-11-06 10:26:07 -0600 | [diff] [blame] | 94 | |
| 95 | octopus:: |
Wincent Colaiuta | 4fa535a | 2009-03-25 19:23:42 +0100 | [diff] [blame] | 96 | This resolves cases with more than two heads, but refuses to do |
| 97 | a complex merge that needs manual resolution. It is |
Jon Loeliger | bb73d73 | 2005-11-06 10:26:07 -0600 | [diff] [blame] | 98 | primarily meant to be used for bundling topic branch |
| 99 | heads together. This is the default merge strategy when |
Wincent Colaiuta | 4fa535a | 2009-03-25 19:23:42 +0100 | [diff] [blame] | 100 | pulling or merging more than one branch. |
Jon Loeliger | bb73d73 | 2005-11-06 10:26:07 -0600 | [diff] [blame] | 101 | |
| 102 | ours:: |
Thomas Rast | d4cbaa1 | 2009-11-15 19:25:30 +0100 | [diff] [blame] | 103 | This resolves any number of heads, but the resulting tree of the |
| 104 | merge is always that of the current branch head, effectively |
| 105 | ignoring all changes from all other branches. It is meant to |
Jon Loeliger | bb73d73 | 2005-11-06 10:26:07 -0600 | [diff] [blame] | 106 | be used to supersede old development history of side |
Junio C Hamano | 566c511 | 2008-07-18 02:43:00 -0700 | [diff] [blame] | 107 | branches. Note that this is different from the -Xours option to |
| 108 | the 'recursive' merge strategy. |
Miklos Vajna | 02b00e1 | 2008-03-18 13:26:43 +0100 | [diff] [blame] | 109 | |
| 110 | subtree:: |
| 111 | This is a modified recursive strategy. When merging trees A and |
| 112 | B, if B corresponds to a subtree of A, B is first adjusted to |
| 113 | match the tree structure of A, instead of reading the trees at |
| 114 | the same level. This adjustment is also done to the common |
| 115 | ancestor tree. |
brian m. carlson | c566500 | 2013-12-08 20:40:27 +0000 | [diff] [blame] | 116 | |
| 117 | With the strategies that use 3-way merge (including the default, 'recursive'), |
| 118 | if a change is made on both branches, but later reverted on one of the |
| 119 | branches, that change will be present in the merged result; some people find |
| 120 | this behavior confusing. It occurs because only the heads and the merge base |
| 121 | are considered when performing a merge, not the individual commits. The merge |
| 122 | algorithm therefore considers the reverted change as no change at all, and |
| 123 | substitutes the changed version instead. |