Autogenerated manpages for v2.34.1-8-g35151
[git-manpages.git] / man1 / git-fmt-merge-msg.1
blobe87f1bb96d52dd256c8009ceb7104a694202d726
1 '\" t
2 .\"     Title: git-fmt-merge-msg
3 .\"    Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
4 .\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
5 .\"      Date: 11/24/2021
6 .\"    Manual: Git Manual
7 .\"    Source: Git 2.34.1.8.g35151cf072
8 .\"  Language: English
9 .\"
10 .TH "GIT\-FMT\-MERGE\-MSG" "1" "11/24/2021" "Git 2\&.34\&.1\&.8\&.g35151cf0" "Git Manual"
11 .\" -----------------------------------------------------------------
12 .\" * Define some portability stuff
13 .\" -----------------------------------------------------------------
14 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
15 .\" http://bugs.debian.org/507673
16 .\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
17 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
18 .ie \n(.g .ds Aq \(aq
19 .el       .ds Aq '
20 .\" -----------------------------------------------------------------
21 .\" * set default formatting
22 .\" -----------------------------------------------------------------
23 .\" disable hyphenation
24 .nh
25 .\" disable justification (adjust text to left margin only)
26 .ad l
27 .\" -----------------------------------------------------------------
28 .\" * MAIN CONTENT STARTS HERE *
29 .\" -----------------------------------------------------------------
30 .SH "NAME"
31 git-fmt-merge-msg \- Produce a merge commit message
32 .SH "SYNOPSIS"
33 .sp
34 .nf
35 \fIgit fmt\-merge\-msg\fR [\-m <message>] [\-\-log[=<n>] | \-\-no\-log]
36 \fIgit fmt\-merge\-msg\fR [\-m <message>] [\-\-log[=<n>] | \-\-no\-log] \-F <file>
37 .fi
38 .sp
39 .SH "DESCRIPTION"
40 .sp
41 Takes the list of merged objects on stdin and produces a suitable commit message to be used for the merge commit, usually to be passed as the \fI<merge\-message>\fR argument of \fIgit merge\fR\&.
42 .sp
43 This command is intended mostly for internal use by scripts automatically invoking \fIgit merge\fR\&.
44 .SH "OPTIONS"
45 .PP
46 \-\-log[=<n>]
47 .RS 4
48 In addition to branch names, populate the log message with one\-line descriptions from the actual commits that are being merged\&. At most <n> commits from each merge parent will be used (20 if <n> is omitted)\&. This overrides the
49 \fBmerge\&.log\fR
50 configuration variable\&.
51 .RE
52 .PP
53 \-\-no\-log
54 .RS 4
55 Do not list one\-line descriptions from the actual commits being merged\&.
56 .RE
57 .PP
58 \-\-[no\-]summary
59 .RS 4
60 Synonyms to \-\-log and \-\-no\-log; these are deprecated and will be removed in the future\&.
61 .RE
62 .PP
63 \-m <message>, \-\-message <message>
64 .RS 4
65 Use <message> instead of the branch names for the first line of the log message\&. For use with
66 \fB\-\-log\fR\&.
67 .RE
68 .PP
69 \-F <file>, \-\-file <file>
70 .RS 4
71 Take the list of merged objects from <file> instead of stdin\&.
72 .RE
73 .SH "CONFIGURATION"
74 .PP
75 merge\&.branchdesc
76 .RS 4
77 In addition to branch names, populate the log message with the branch description text associated with them\&. Defaults to false\&.
78 .RE
79 .PP
80 merge\&.log
81 .RS 4
82 In addition to branch names, populate the log message with at most the specified number of one\-line descriptions from the actual commits that are being merged\&. Defaults to false, and true is a synonym for 20\&.
83 .RE
84 .PP
85 merge\&.suppressDest
86 .RS 4
87 By adding a glob that matches the names of integration branches to this multi\-valued configuration variable, the default merge message computed for merges into these integration branches will omit "into <branch name>" from its title\&.
88 .sp
89 An element with an empty value can be used to clear the list of globs accumulated from previous configuration entries\&. When there is no
90 \fBmerge\&.suppressDest\fR
91 variable defined, the default value of
92 \fBmaster\fR
93 is used for backward compatibility\&.
94 .RE
95 .PP
96 merge\&.summary
97 .RS 4
98 Synonym to
99 \fBmerge\&.log\fR; this is deprecated and will be removed in the future\&.
101 .SH "EXAMPLES"
103 .if n \{\
104 .RS 4
107 $ git fetch origin master
108 $ git fmt\-merge\-msg \-\-log <$GIT_DIR/FETCH_HEAD
110 .if n \{\
115 Print a log message describing a merge of the "master" branch from the "origin" remote\&.
116 .SH "SEE ALSO"
118 \fBgit-merge\fR(1)
119 .SH "GIT"
121 Part of the \fBgit\fR(1) suite