Junio C Hamano | c21ab05 | 2009-10-31 04:03:55 | [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. |
Junio C Hamano | 610d176 | 2008-11-28 06:27:13 | [diff] [blame] | 9 | |
Junio C Hamano | 11821ed | 2011-10-19 18:42:09 | [diff] [blame] | 10 | --edit:: |
Junio C Hamano | 7e590a1 | 2013-06-02 23:46:52 | [diff] [blame] | 11 | -e:: |
Junio C Hamano | 795a5a3 | 2012-02-02 01:36:37 | [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 | c5bd79e | 2014-01-27 21:31:26 | [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[] |
Junio C Hamano | 795a5a3 | 2012-02-02 01:36:37 | [diff] [blame] | 23 | + |
| 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. |
Junio C Hamano | 11821ed | 2011-10-19 18:42:09 | [diff] [blame] | 29 | |
Junio C Hamano | c21ab05 | 2009-10-31 04:03:55 | [diff] [blame] | 30 | --ff:: |
Junio C Hamano | f54f08e | 2012-02-27 07:49:19 | [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 | |
Junio C Hamano | c21ab05 | 2009-10-31 04:03:55 | [diff] [blame] | 35 | --no-ff:: |
Junio C Hamano | f54f08e | 2012-02-27 07:49:19 | [diff] [blame] | 36 | Create a merge commit even when the merge resolves as a |
Junio C Hamano | 778a341 | 2013-03-28 23:24:30 | [diff] [blame] | 37 | fast-forward. This is the default behaviour when merging an |
| 38 | annotated (and possibly signed) tag. |
Junio C Hamano | f54f08e | 2012-02-27 07:49:19 | [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. |
Junio C Hamano | 6d76d61 | 2008-05-09 05:46:08 | [diff] [blame] | 44 | |
Junio C Hamano | 3b4609d | 2010-09-30 00:04:34 | [diff] [blame] | 45 | --log[=<n>]:: |
Junio C Hamano | c21ab05 | 2009-10-31 04:03:55 | [diff] [blame] | 46 | --no-log:: |
Junio C Hamano | 6d76d61 | 2008-05-09 05:46:08 | [diff] [blame] | 47 | In addition to branch names, populate the log message with |
Junio C Hamano | 3b4609d | 2010-09-30 00:04:34 | [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]. |
Junio C Hamano | c21ab05 | 2009-10-31 04:03:55 | [diff] [blame] | 50 | + |
| 51 | With --no-log do not list one-line descriptions from the |
| 52 | actual commits being merged. |
Junio C Hamano | 6d76d61 | 2008-05-09 05:46:08 | [diff] [blame] | 53 | |
Junio C Hamano | 6d76d61 | 2008-05-09 05:46:08 | [diff] [blame] | 54 | |
Junio C Hamano | c21ab05 | 2009-10-31 04:03:55 | [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. |
Junio C Hamano | 1b50ce9 | 2007-10-03 12:05:53 | [diff] [blame] | 63 | |
Junio C Hamano | 3901ffb | 2006-06-26 23:46:53 | [diff] [blame] | 64 | --squash:: |
Junio C Hamano | c21ab05 | 2009-10-31 04:03:55 | [diff] [blame] | 65 | --no-squash:: |
Junio C Hamano | d75148a | 2014-04-08 19:48:38 | [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). |
Junio C Hamano | c21ab05 | 2009-10-31 04:03:55 | [diff] [blame] | 73 | + |
| 74 | With --no-squash perform the merge and commit the result. This |
| 75 | option can be used to override --squash. |
Junio C Hamano | 1b50ce9 | 2007-10-03 12:05:53 | [diff] [blame] | 76 | |
Junio C Hamano | eb41599 | 2008-06-08 22:49:47 | [diff] [blame] | 77 | -s <strategy>:: |
| 78 | --strategy=<strategy>:: |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [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 |
Junio C Hamano | 1aa40d2 | 2010-01-21 17:46:43 | [diff] [blame] | 82 | is used instead ('git merge-recursive' when merging a single |
| 83 | head, 'git merge-octopus' otherwise). |
Junio C Hamano | c21ab05 | 2009-10-31 04:03:55 | [diff] [blame] | 84 | |
Junio C Hamano | b04bb3f | 2010-04-14 14:07:36 | [diff] [blame] | 85 | -X <option>:: |
| 86 | --strategy-option=<option>:: |
| 87 | Pass merge strategy specific option through to the merge |
| 88 | strategy. |
| 89 | |
Junio C Hamano | edf80bd | 2013-04-05 22:14:36 | [diff] [blame] | 90 | --verify-signatures:: |
| 91 | --no-verify-signatures:: |
| 92 | Verify that the commits being merged have good and trusted GPG signatures |
| 93 | and abort the merge in case they do not. |
| 94 | |
Junio C Hamano | c21ab05 | 2009-10-31 04:03:55 | [diff] [blame] | 95 | --summary:: |
| 96 | --no-summary:: |
| 97 | Synonyms to --stat and --no-stat; these are deprecated and will be |
| 98 | removed in the future. |
| 99 | |
Junio C Hamano | ea90ab3 | 2010-03-15 20:32:55 | [diff] [blame] | 100 | ifndef::git-pull[] |
Junio C Hamano | c21ab05 | 2009-10-31 04:03:55 | [diff] [blame] | 101 | -q:: |
| 102 | --quiet:: |
Junio C Hamano | d2c978f | 2011-03-20 19:42:22 | [diff] [blame] | 103 | Operate quietly. Implies --no-progress. |
Junio C Hamano | c21ab05 | 2009-10-31 04:03:55 | [diff] [blame] | 104 | |
| 105 | -v:: |
| 106 | --verbose:: |
| 107 | Be verbose. |
Junio C Hamano | d2c978f | 2011-03-20 19:42:22 | [diff] [blame] | 108 | |
| 109 | --progress:: |
| 110 | --no-progress:: |
| 111 | Turn progress on/off explicitly. If neither is specified, |
| 112 | progress is shown if standard error is connected to a terminal. |
| 113 | Note that not all merge strategies may support progress |
| 114 | reporting. |
| 115 | |
Junio C Hamano | ea90ab3 | 2010-03-15 20:32:55 | [diff] [blame] | 116 | endif::git-pull[] |
Junio C Hamano | 7921e7c | 2016-04-29 21:55:09 | [diff] [blame^] | 117 | |
| 118 | --allow-unrelated-histories:: |
| 119 | By default, `git merge` command refuses to merge histories |
| 120 | that do not share a common ancestor. This option can be |
| 121 | used to override this safety when merging histories of two |
| 122 | projects that started their lives independently. As that is |
| 123 | a very rare occasion, no configuration variable to enable |
| 124 | this by default exists and will not be added. |