blob: 8615ae353e91fa1de0d17c7c3f8ea777ac62e209 [file] [log] [blame]
Junio C Hamano1a4e8412005-12-27 08:17:231git-fmt-merge-msg(1)
2====================
3
4NAME
5----
6git-fmt-merge-msg - Produce a merge commit message
7
8
9SYNOPSIS
10--------
Junio C Hamanoa9b8d242007-05-19 04:51:5511[verse]
Junio C Hamano9882a522007-04-27 08:22:2212git-fmt-merge-msg [--summary | --no-summary] <$GIT_DIR/FETCH_HEAD
Junio C Hamanoa6387422007-08-25 03:54:2713git-fmt-merge-msg [--summary | --no-summary] -F <file>
Junio C Hamano1a4e8412005-12-27 08:17:2314
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
19passed as the '<merge-message>' argument of `git-merge`.
20
21This script is intended mostly for internal use by scripts
22automatically invoking `git-merge`.
23
Junio C Hamano9882a522007-04-27 08:22:2224OPTIONS
25-------
26
27--summary::
28In addition to branch names, populate the log message with
29one-line descriptions from the actual commits that are being
30merged.
31
32--no-summary::
33Do not list one-line descriptions from the actual commits being
34merged.
35
36--file <file>, -F <file>::
37Take the list of merged objects from <file> instead of
38stdin.
39
40CONFIGURATION
41-------------
42
43merge.summary::
44Whether to include summaries of merged commits in newly
45merge commit messages. False by default.
Junio C Hamano1a4e8412005-12-27 08:17:2346
47SEE ALSO
48--------
Junio C Hamano35738e82008-01-07 07:55:4649linkgit:git-merge[1]
Junio C Hamano1a4e8412005-12-27 08:17:2350
51
52Author
53------
54Written by Junio C Hamano <junkio@cox.net>
55
56Documentation
57--------------
58Documentation by Petr Baudis, Junio C Hamano and the git-list <git@vger.kernel.org>.
59
60GIT
61---
Junio C Hamano35738e82008-01-07 07:55:4662Part of the linkgit:git[7] suite