2005-11-01 21:45:55 +01:00
|
|
|
git-fmt-merge-msg(1)
|
|
|
|
====================
|
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
|
|
|
git-fmt-merge-msg - Produce a merge commit message
|
|
|
|
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2007-05-18 15:39:33 +02:00
|
|
|
[verse]
|
2007-04-27 06:58:57 +02:00
|
|
|
git-fmt-merge-msg [--summary | --no-summary] <$GIT_DIR/FETCH_HEAD
|
2007-08-24 02:44:13 +02:00
|
|
|
git-fmt-merge-msg [--summary | --no-summary] -F <file>
|
2005-11-01 21:45:55 +01:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
|
|
|
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 '<merge-message>' argument of `git-merge`.
|
|
|
|
|
|
|
|
This script is intended mostly for internal use by scripts
|
|
|
|
automatically invoking `git-merge`.
|
|
|
|
|
2007-04-27 06:58:57 +02:00
|
|
|
OPTIONS
|
|
|
|
-------
|
|
|
|
|
|
|
|
--summary::
|
|
|
|
In addition to branch names, populate the log message with
|
|
|
|
one-line descriptions from the actual commits that are being
|
|
|
|
merged.
|
|
|
|
|
|
|
|
--no-summary::
|
|
|
|
Do not list one-line descriptions from the actual commits being
|
|
|
|
merged.
|
|
|
|
|
|
|
|
--file <file>, -F <file>::
|
|
|
|
Take the list of merged objects from <file> instead of
|
|
|
|
stdin.
|
|
|
|
|
|
|
|
CONFIGURATION
|
|
|
|
-------------
|
|
|
|
|
|
|
|
merge.summary::
|
|
|
|
Whether to include summaries of merged commits in newly
|
|
|
|
merge commit messages. False by default.
|
2005-11-01 21:45:55 +01:00
|
|
|
|
|
|
|
SEE ALSO
|
|
|
|
--------
|
2007-12-29 07:20:38 +01:00
|
|
|
linkgit:git-merge[1]
|
2005-11-01 21:45:55 +01:00
|
|
|
|
|
|
|
|
|
|
|
Author
|
|
|
|
------
|
|
|
|
Written by Junio C Hamano <junkio@cox.net>
|
|
|
|
|
|
|
|
Documentation
|
|
|
|
--------------
|
|
|
|
Documentation by Petr Baudis, Junio C Hamano and the git-list <git@vger.kernel.org>.
|
|
|
|
|
|
|
|
GIT
|
|
|
|
---
|
2007-12-29 07:20:38 +01:00
|
|
|
Part of the linkgit:git[7] suite
|