Jari Aalto | 7c85d27 | 2009-10-22 22:25:20 +0300 | [diff] [blame] | 1 | --commit:: |
| 2 | --no-commit:: |
| 3 | Perform the merge and commit the result. This option can |
| 4 | be used to override --no-commit. |
| 5 | + |
| 6 | With --no-commit perform the merge but pretend the merge |
| 7 | failed and do not autocommit, to give the user a chance to |
| 8 | inspect and further tweak the merge result before committing. |
Tuncer Ayaz | 7f87aff | 2008-11-15 01:14:24 +0100 | [diff] [blame] | 9 | |
Jay Soffian | 66f4b98 | 2011-10-08 14:39:52 -0400 | [diff] [blame] | 10 | --edit:: |
Richard Hansen | 66fa1b2 | 2013-05-16 18:26:00 -0400 | [diff] [blame] | 11 | -e:: |
Junio C Hamano | f824628 | 2012-01-10 22:44:45 -0800 | [diff] [blame] | 12 | --no-edit:: |
| 13 | Invoke an editor before committing successful mechanical merge to |
| 14 | further edit the auto-generated merge message, so that the user |
| 15 | can explain and justify the merge. The `--no-edit` option can be |
| 16 | used to accept the auto-generated message (this is generally |
Junio C Hamano | 08f19cf | 2014-01-14 10:26:21 -0800 | [diff] [blame] | 17 | discouraged). |
| 18 | ifndef::git-pull[] |
| 19 | The `--edit` (or `-e`) option is still useful if you are |
| 20 | giving a draft message with the `-m` option from the command line |
| 21 | and want to edit it in the editor. |
| 22 | endif::git-pull[] |
Jay Soffian | 66f4b98 | 2011-10-08 14:39:52 -0400 | [diff] [blame] | 23 | + |
Junio C Hamano | f824628 | 2012-01-10 22:44:45 -0800 | [diff] [blame] | 24 | Older scripts may depend on the historical behaviour of not allowing the |
| 25 | user to edit the merge log message. They will see an editor opened when |
| 26 | they run `git merge`. To make it easier to adjust such scripts to the |
| 27 | updated behaviour, the environment variable `GIT_MERGE_AUTOEDIT` can be |
| 28 | set to `no` at the beginning of them. |
Jay Soffian | 66f4b98 | 2011-10-08 14:39:52 -0400 | [diff] [blame] | 29 | |
Jari Aalto | 7c85d27 | 2009-10-22 22:25:20 +0300 | [diff] [blame] | 30 | --ff:: |
Junio C Hamano | 690b297 | 2012-02-22 14:27:07 -0800 | [diff] [blame] | 31 | When the merge resolves as a fast-forward, only update the branch |
| 32 | pointer, without creating a merge commit. This is the default |
| 33 | behavior. |
| 34 | |
Jari Aalto | 7c85d27 | 2009-10-22 22:25:20 +0300 | [diff] [blame] | 35 | --no-ff:: |
Junio C Hamano | 690b297 | 2012-02-22 14:27:07 -0800 | [diff] [blame] | 36 | Create a merge commit even when the merge resolves as a |
Junio C Hamano | 77c7278 | 2013-03-21 22:57:48 +0100 | [diff] [blame] | 37 | fast-forward. This is the default behaviour when merging an |
| 38 | annotated (and possibly signed) tag. |
Junio C Hamano | 690b297 | 2012-02-22 14:27:07 -0800 | [diff] [blame] | 39 | |
| 40 | --ff-only:: |
| 41 | Refuse to merge and exit with a non-zero status unless the |
| 42 | current `HEAD` is already up-to-date or the merge can be |
| 43 | resolved as a fast-forward. |
SZEDER Gábor | d8abe14 | 2008-04-06 03:23:43 +0200 | [diff] [blame] | 44 | |
Ramkumar Ramachandra | 96e9420 | 2010-09-08 23:29:54 +0530 | [diff] [blame] | 45 | --log[=<n>]:: |
Jari Aalto | 7c85d27 | 2009-10-22 22:25:20 +0300 | [diff] [blame] | 46 | --no-log:: |
SZEDER Gábor | efb779f | 2008-04-06 03:23:46 +0200 | [diff] [blame] | 47 | In addition to branch names, populate the log message with |
Ramkumar Ramachandra | 96e9420 | 2010-09-08 23:29:54 +0530 | [diff] [blame] | 48 | one-line descriptions from at most <n> actual commits that are being |
| 49 | merged. See also linkgit:git-fmt-merge-msg[1]. |
Jari Aalto | 7c85d27 | 2009-10-22 22:25:20 +0300 | [diff] [blame] | 50 | + |
| 51 | With --no-log do not list one-line descriptions from the |
| 52 | actual commits being merged. |
SZEDER Gábor | efb779f | 2008-04-06 03:23:46 +0200 | [diff] [blame] | 53 | |
SZEDER Gábor | efb779f | 2008-04-06 03:23:46 +0200 | [diff] [blame] | 54 | |
Jari Aalto | 7c85d27 | 2009-10-22 22:25:20 +0300 | [diff] [blame] | 55 | --stat:: |
| 56 | -n:: |
| 57 | --no-stat:: |
| 58 | Show a diffstat at the end of the merge. The diffstat is also |
| 59 | controlled by the configuration option merge.stat. |
| 60 | + |
| 61 | With -n or --no-stat do not show a diffstat at the end of the |
| 62 | merge. |
Lars Hjemli | d08af0a | 2007-09-24 00:51:44 +0200 | [diff] [blame] | 63 | |
Junio C Hamano | 7d0c688 | 2006-06-23 01:37:02 -0700 | [diff] [blame] | 64 | --squash:: |
Jari Aalto | 7c85d27 | 2009-10-22 22:25:20 +0300 | [diff] [blame] | 65 | --no-squash:: |
Justin Lebar | a58088a | 2014-03-31 15:11:44 -0700 | [diff] [blame] | 66 | Produce the working tree and index state as if a real merge |
| 67 | happened (except for the merge information), but do not actually |
| 68 | make a commit, move the `HEAD`, or record `$GIT_DIR/MERGE_HEAD` |
| 69 | (to cause the next `git commit` command to create a merge |
| 70 | commit). This allows you to create a single commit on top of |
| 71 | the current branch whose effect is the same as merging another |
| 72 | branch (or more in case of an octopus). |
Jari Aalto | 7c85d27 | 2009-10-22 22:25:20 +0300 | [diff] [blame] | 73 | + |
| 74 | With --no-squash perform the merge and commit the result. This |
| 75 | option can be used to override --squash. |
Lars Hjemli | d66424c | 2007-09-24 00:51:45 +0200 | [diff] [blame] | 76 | |
Stephan Beyer | 3240240 | 2008-06-08 03:36:09 +0200 | [diff] [blame] | 77 | -s <strategy>:: |
| 78 | --strategy=<strategy>:: |
Jon Loeliger | 93d69d8 | 2005-11-06 23:30:56 -0600 | [diff] [blame] | 79 | Use the given merge strategy; can be supplied more than |
| 80 | once to specify them in the order they should be tried. |
| 81 | If there is no `-s` option, a built-in list of strategies |
Thomas Rast | 0b444cd | 2010-01-10 00:33:00 +0100 | [diff] [blame] | 82 | is used instead ('git merge-recursive' when merging a single |
| 83 | head, 'git merge-octopus' otherwise). |
Jari Aalto | 7c85d27 | 2009-10-22 22:25:20 +0300 | [diff] [blame] | 84 | |
Marc Branchaud | adda3c3 | 2010-04-12 12:28:13 -0400 | [diff] [blame] | 85 | -X <option>:: |
| 86 | --strategy-option=<option>:: |
| 87 | Pass merge strategy specific option through to the merge |
| 88 | strategy. |
| 89 | |
Sebastian Götte | efed002 | 2013-03-31 18:02:24 +0200 | [diff] [blame] | 90 | --verify-signatures:: |
| 91 | --no-verify-signatures:: |
Keller Fuchs | 05a5869 | 2016-05-13 09:51:01 +0000 | [diff] [blame] | 92 | Verify that the tip commit of the side branch being merged is |
| 93 | signed with a valid key, i.e. a key that has a valid uid: in the |
| 94 | default trust model, this means the signing key has been signed by |
| 95 | a trusted key. If the tip commit of the side branch is not signed |
| 96 | with a valid key, the merge is aborted. |
Sebastian Götte | efed002 | 2013-03-31 18:02:24 +0200 | [diff] [blame] | 97 | |
Jari Aalto | 7c85d27 | 2009-10-22 22:25:20 +0300 | [diff] [blame] | 98 | --summary:: |
| 99 | --no-summary:: |
| 100 | Synonyms to --stat and --no-stat; these are deprecated and will be |
| 101 | removed in the future. |
| 102 | |
Tay Ray Chuan | 409b8d8 | 2010-02-24 20:50:21 +0800 | [diff] [blame] | 103 | ifndef::git-pull[] |
Jari Aalto | 7c85d27 | 2009-10-22 22:25:20 +0300 | [diff] [blame] | 104 | -q:: |
| 105 | --quiet:: |
Jeff King | 99bfc66 | 2011-02-20 04:53:21 -0500 | [diff] [blame] | 106 | Operate quietly. Implies --no-progress. |
Jari Aalto | 7c85d27 | 2009-10-22 22:25:20 +0300 | [diff] [blame] | 107 | |
| 108 | -v:: |
| 109 | --verbose:: |
| 110 | Be verbose. |
Jeff King | 99bfc66 | 2011-02-20 04:53:21 -0500 | [diff] [blame] | 111 | |
| 112 | --progress:: |
| 113 | --no-progress:: |
| 114 | Turn progress on/off explicitly. If neither is specified, |
| 115 | progress is shown if standard error is connected to a terminal. |
| 116 | Note that not all merge strategies may support progress |
| 117 | reporting. |
| 118 | |
Tay Ray Chuan | 409b8d8 | 2010-02-24 20:50:21 +0800 | [diff] [blame] | 119 | endif::git-pull[] |
Junio C Hamano | 09c2cb8 | 2016-03-18 13:21:09 -0700 | [diff] [blame] | 120 | |
| 121 | --allow-unrelated-histories:: |
| 122 | By default, `git merge` command refuses to merge histories |
| 123 | that do not share a common ancestor. This option can be |
| 124 | used to override this safety when merging histories of two |
| 125 | projects that started their lives independently. As that is |
| 126 | a very rare occasion, no configuration variable to enable |
| 127 | this by default exists and will not be added. |