blob: ddb89f8d60f112e507195b83e83048d727006611 [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 Hamanofce7c7e2008-07-02 03:06:3812'git fmt-merge-msg' [--log | --no-log] <$GIT_DIR/FETCH_HEAD
13'git fmt-merge-msg' [--log | --no-log] -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
Junio C Hamano6d76d612008-05-09 05:46:0827--log::
Junio C Hamano9882a522007-04-27 08:22:2228In addition to branch names, populate the log message with
29one-line descriptions from the actual commits that are being
30merged.
31
Junio C Hamano6d76d612008-05-09 05:46:0832--no-log::
Junio C Hamano9882a522007-04-27 08:22:2233Do not list one-line descriptions from the actual commits being
34merged.
35
Junio C Hamanoeb415992008-06-08 22:49:4736--summary::
37--no-summary::
Junio C Hamano6d76d612008-05-09 05:46:0838Synonyms to --log and --no-log; these are deprecated and will be
39removed in the future.
40
Junio C Hamanoeb415992008-06-08 22:49:4741-F <file>::
42--file <file>::
Junio C Hamano9882a522007-04-27 08:22:2243Take the list of merged objects from <file> instead of
44stdin.
45
46CONFIGURATION
47-------------
48
Junio C Hamano6d76d612008-05-09 05:46:0849merge.log::
Junio C Hamano9882a522007-04-27 08:22:2250Whether to include summaries of merged commits in newly
51merge commit messages. False by default.
Junio C Hamano1a4e8412005-12-27 08:17:2352
Junio C Hamano6d76d612008-05-09 05:46:0853merge.summary::
54Synonym to `merge.log`; this is deprecated and will be removed in
55the future.
56
Junio C Hamano1a4e8412005-12-27 08:17:2357SEE ALSO
58--------
Junio C Hamano35738e82008-01-07 07:55:4659linkgit:git-merge[1]
Junio C Hamano1a4e8412005-12-27 08:17:2360
61
62Author
63------
64Written by Junio C Hamano <junkio@cox.net>
65
66Documentation
67--------------
68Documentation by Petr Baudis, Junio C Hamano and the git-list <git@vger.kernel.org>.
69
70GIT
71---
Junio C Hamanof7c042d2008-06-06 22:50:5372Part of the linkgit:git[1] suite