1GIT-FMT-MERGE-MSG(1) Git Manual GIT-FMT-MERGE-MSG(1)
2
3
4
6 git-fmt-merge-msg - Produce a merge commit message
7
9 git-fmt-merge-msg [--summary | --no-summary] <$GIT_DIR/FETCH_HEAD
10 git-fmt-merge-msg [--summary | --no-summary] -F <file>
11
13 Takes the list of merged objects on stdin and produces a suitable
14 commit message to be used for the merge commit, usually to be passed as
15 the <merge-message> argument of git-merge.
16
17 This script is intended mostly for internal use by scripts
18 automatically invoking git-merge.
19
21 --summary
22 In addition to branch names, populate the log message with one-line
23 descriptions from the actual commits that are being merged.
24
25 --no-summary
26 Do not list one-line descriptions from the actual commits being
27 merged.
28
29 --file <file>, -F <file>
30 Take the list of merged objects from <file> instead of stdin.
31
33 merge.summary
34 Whether to include summaries of merged commits in newly merge
35 commit messages. False by default.
36
38 git-merge(1)
39
41 Written by Junio C Hamano <junkio@cox.net>
42
44 Documentation by Petr Baudis, Junio C Hamano and the git-list
45 <git@vger.kernel.org>.
46
48 Part of the git(7) suite
49
50
51
52
53Git 1.5.3.3 10/09/2007 GIT-FMT-MERGE-MSG(1)