]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/git-fmt-merge-msg.txt
Merge branch 'bl/cherry-pick-empty'
[thirdparty/git.git] / Documentation / git-fmt-merge-msg.txt
CommitLineData
3c64314c
PB
1git-fmt-merge-msg(1)
2====================
3
4NAME
5----
6git-fmt-merge-msg - Produce a merge commit message
7
8
9SYNOPSIS
10--------
e448ff87 11[verse]
bd2bc942 12'git fmt-merge-msg' [-m <message>] [--into-name <branch>] [--log[=<n>] | --no-log]
96e9420c 13'git fmt-merge-msg' [-m <message>] [--log[=<n>] | --no-log] -F <file>
3c64314c
PB
14
15DESCRIPTION
16-----------
17Takes the list of merged objects on stdin and produces a suitable
18commit message to be used for the merge commit, usually to be
0b444cdb 19passed as the '<merge-message>' argument of 'git merge'.
3c64314c 20
0f8a02c6
JN
21This command is intended mostly for internal use by scripts
22automatically invoking 'git merge'.
3c64314c 23
2bc060cc
AR
24OPTIONS
25-------
26
96e9420c 27--log[=<n>]::
2bc060cc
AR
28 In addition to branch names, populate the log message with
29 one-line descriptions from the actual commits that are being
96e9420c
RR
30 merged. At most <n> commits from each merge parent will be
31 used (20 if <n> is omitted). This overrides the `merge.log`
32 configuration variable.
2bc060cc 33
6cd9cfef 34--no-log::
2bc060cc
AR
35 Do not list one-line descriptions from the actual commits being
36 merged.
37
0460ed2c 38--[no-]summary::
6cd9cfef
SG
39 Synonyms to --log and --no-log; these are deprecated and will be
40 removed in the future.
41
2102440c
JN
42-m <message>::
43--message <message>::
44 Use <message> instead of the branch names for the first line
45 of the log message. For use with `--log`.
46
bd2bc942
JH
47--into-name <branch>::
48 Prepare the merge message as if merging to the branch `<branch>`,
49 instead of the name of the real branch to which the merge is made.
50
3240240f
SB
51-F <file>::
52--file <file>::
2bc060cc
AR
53 Take the list of merged objects from <file> instead of
54 stdin.
55
56CONFIGURATION
57-------------
5a06936b 58include::config/fmt-merge-msg.txt[]
3c64314c 59
6cd9cfef
SG
60merge.summary::
61 Synonym to `merge.log`; this is deprecated and will be removed in
62 the future.
63
76a8788c
NTND
64EXAMPLES
65--------
33e8fc87 66
4259d693 67---------
33e8fc87
JH
68$ git fetch origin master
69$ git fmt-merge-msg --log <$GIT_DIR/FETCH_HEAD
4259d693 70---------
33e8fc87
JH
71
72Print a log message describing a merge of the "master" branch from
73the "origin" remote.
74
75
3c64314c
PB
76SEE ALSO
77--------
5162e697 78linkgit:git-merge[1]
3c64314c 79
3c64314c
PB
80GIT
81---
9e1f0a85 82Part of the linkgit:git[1] suite