]> git.ipfire.org Git - thirdparty/git.git/blob - Documentation/git-fmt-merge-msg.txt
Merge branch 'master' of git://git.kernel.org/pub/scm/gitk/gitk
[thirdparty/git.git] / Documentation / git-fmt-merge-msg.txt
1 git-fmt-merge-msg(1)
2 ====================
3
4 NAME
5 ----
6 git-fmt-merge-msg - Produce a merge commit message
7
8
9 SYNOPSIS
10 --------
11 [verse]
12 git-fmt-merge-msg [--summary | --no-summary] <$GIT_DIR/FETCH_HEAD
13 git-fmt-merge-msg [--summary | --no-summray] -F <file>
14
15 DESCRIPTION
16 -----------
17 Takes the list of merged objects on stdin and produces a suitable
18 commit message to be used for the merge commit, usually to be
19 passed as the '<merge-message>' argument of `git-merge`.
20
21 This script is intended mostly for internal use by scripts
22 automatically invoking `git-merge`.
23
24 OPTIONS
25 -------
26
27 --summary::
28 In addition to branch names, populate the log message with
29 one-line descriptions from the actual commits that are being
30 merged.
31
32 --no-summary::
33 Do not list one-line descriptions from the actual commits being
34 merged.
35
36 --file <file>, -F <file>::
37 Take the list of merged objects from <file> instead of
38 stdin.
39
40 CONFIGURATION
41 -------------
42
43 merge.summary::
44 Whether to include summaries of merged commits in newly
45 merge commit messages. False by default.
46
47 SEE ALSO
48 --------
49 gitlink:git-merge[1]
50
51
52 Author
53 ------
54 Written by Junio C Hamano <junkio@cox.net>
55
56 Documentation
57 --------------
58 Documentation by Petr Baudis, Junio C Hamano and the git-list <git@vger.kernel.org>.
59
60 GIT
61 ---
62 Part of the gitlink:git[7] suite