]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/merge-options.txt
Merge branch 'js/unmap-before-ext-diff' into maint
[thirdparty/git.git] / Documentation / merge-options.txt
CommitLineData
7c85d274
JA
1--commit::
2--no-commit::
3 Perform the merge and commit the result. This option can
4 be used to override --no-commit.
5+
1ede45e4
EN
6With --no-commit perform the merge and stop just before creating
7a merge commit, to give the user a chance to inspect and further
8tweak the merge result before committing.
9+
10Note that fast-forward updates do not create a merge commit and
11therefore there is no way to stop those merges with --no-commit.
12Thus, if you want to ensure your branch is not changed or updated
13by the merge command, use --no-ff with --no-commit.
93d69d86 14
66f4b98a 15--edit::
66fa1b2c 16-e::
f8246281
JH
17--no-edit::
18 Invoke an editor before committing successful mechanical merge to
19 further edit the auto-generated merge message, so that the user
20 can explain and justify the merge. The `--no-edit` option can be
21 used to accept the auto-generated message (this is generally
08f19cfe
JH
22 discouraged).
23ifndef::git-pull[]
24The `--edit` (or `-e`) option is still useful if you are
25giving a draft message with the `-m` option from the command line
26and want to edit it in the editor.
27endif::git-pull[]
66f4b98a 28+
f8246281
JH
29Older scripts may depend on the historical behaviour of not allowing the
30user to edit the merge log message. They will see an editor opened when
31they run `git merge`. To make it easier to adjust such scripts to the
32updated behaviour, the environment variable `GIT_MERGE_AUTOEDIT` can be
33set to `no` at the beginning of them.
66f4b98a 34
d540b70c 35--cleanup=<mode>::
1055997e
DL
36 This option determines how the merge message will be cleaned up before
37 commiting. See linkgit:git-commit[1] for more details. In addition, if
38 the '<mode>' is given a value of `scissors`, scissors will be appended
39 to `MERGE_MSG` before being passed on to the commit machinery in the
40 case of a merge conflict.
d540b70c 41
7c85d274 42--ff::
690b2975
JH
43 When the merge resolves as a fast-forward, only update the branch
44 pointer, without creating a merge commit. This is the default
45 behavior.
46
7c85d274 47--no-ff::
690b2975 48 Create a merge commit even when the merge resolves as a
77c72780 49 fast-forward. This is the default behaviour when merging an
adcc94a0
JH
50 annotated (and possibly signed) tag that is not stored in
51 its natural place in 'refs/tags/' hierarchy.
690b2975
JH
52
53--ff-only::
54 Refuse to merge and exit with a non-zero status unless the
7560f547 55 current `HEAD` is already up to date or the merge can be
690b2975 56 resolved as a fast-forward.
d8abe148 57
488aa65c
TK
58-S[<keyid>]::
59--gpg-sign[=<keyid>]::
60 GPG-sign the resulting merge commit. The `keyid` argument is
61 optional and defaults to the committer identity; if specified,
62 it must be stuck to the option without a space.
63
96e9420c 64--log[=<n>]::
7c85d274 65--no-log::
efb779f8 66 In addition to branch names, populate the log message with
96e9420c
RR
67 one-line descriptions from at most <n> actual commits that are being
68 merged. See also linkgit:git-fmt-merge-msg[1].
7c85d274
JA
69+
70With --no-log do not list one-line descriptions from the
71actual commits being merged.
efb779f8 72
3a4d2c74
TK
73--signoff::
74--no-signoff::
75 Add Signed-off-by line by the committer at the end of the commit
76 log message. The meaning of a signoff depends on the project,
77 but it typically certifies that committer has
78 the rights to submit this work under the same license and
79 agrees to a Developer Certificate of Origin
80 (see http://developercertificate.org/ for more information).
81+
82With --no-signoff do not add a Signed-off-by line.
93d69d86 83
7c85d274
JA
84--stat::
85-n::
86--no-stat::
87 Show a diffstat at the end of the merge. The diffstat is also
88 controlled by the configuration option merge.stat.
89+
90With -n or --no-stat do not show a diffstat at the end of the
91merge.
d08af0ad 92
7d0c6887 93--squash::
7c85d274 94--no-squash::
a58088ab
JL
95 Produce the working tree and index state as if a real merge
96 happened (except for the merge information), but do not actually
97 make a commit, move the `HEAD`, or record `$GIT_DIR/MERGE_HEAD`
98 (to cause the next `git commit` command to create a merge
99 commit). This allows you to create a single commit on top of
100 the current branch whose effect is the same as merging another
101 branch (or more in case of an octopus).
7c85d274
JA
102+
103With --no-squash perform the merge and commit the result. This
104option can be used to override --squash.
1d14d0c9
VV
105+
106With --squash, --commit is not allowed, and will fail.
d66424c4 107
3240240f
SB
108-s <strategy>::
109--strategy=<strategy>::
93d69d86
JL
110 Use the given merge strategy; can be supplied more than
111 once to specify them in the order they should be tried.
112 If there is no `-s` option, a built-in list of strategies
0b444cdb
TR
113 is used instead ('git merge-recursive' when merging a single
114 head, 'git merge-octopus' otherwise).
7c85d274 115
adda3c3b
MB
116-X <option>::
117--strategy-option=<option>::
118 Pass merge strategy specific option through to the merge
119 strategy.
120
efed0022
SG
121--verify-signatures::
122--no-verify-signatures::
05a5869a
KF
123 Verify that the tip commit of the side branch being merged is
124 signed with a valid key, i.e. a key that has a valid uid: in the
125 default trust model, this means the signing key has been signed by
126 a trusted key. If the tip commit of the side branch is not signed
127 with a valid key, the merge is aborted.
efed0022 128
7c85d274
JA
129--summary::
130--no-summary::
131 Synonyms to --stat and --no-stat; these are deprecated and will be
132 removed in the future.
133
409b8d82 134ifndef::git-pull[]
7c85d274
JA
135-q::
136--quiet::
99bfc669 137 Operate quietly. Implies --no-progress.
7c85d274
JA
138
139-v::
140--verbose::
141 Be verbose.
99bfc669
JK
142
143--progress::
144--no-progress::
145 Turn progress on/off explicitly. If neither is specified,
146 progress is shown if standard error is connected to a terminal.
147 Note that not all merge strategies may support progress
148 reporting.
149
409b8d82 150endif::git-pull[]
09c2cb87
JH
151
152--allow-unrelated-histories::
153 By default, `git merge` command refuses to merge histories
154 that do not share a common ancestor. This option can be
155 used to override this safety when merging histories of two
156 projects that started their lives independently. As that is
157 a very rare occasion, no configuration variable to enable
158 this by default exists and will not be added.