builtin-bundle: add a --basis option that specifies a basis
[git/pieter.git] / Documentation / git-fmt-merge-msg.txt
blob59a0d97435428bbc10b792329915dfc720e7d43b
1 git-fmt-merge-msg(1)
2 ====================
4 NAME
5 ----
6 git-fmt-merge-msg - Produce a merge commit message
9 SYNOPSIS
10 --------
11 [verse]
12 'git fmt-merge-msg' [--log | --no-log] <$GIT_DIR/FETCH_HEAD
13 'git fmt-merge-msg' [--log | --no-log] -F <file>
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'.
21 This script is intended mostly for internal use by scripts
22 automatically invoking 'git-merge'.
24 OPTIONS
25 -------
27 --log::
28         In addition to branch names, populate the log message with
29         one-line descriptions from the actual commits that are being
30         merged.
32 --no-log::
33         Do not list one-line descriptions from the actual commits being
34         merged.
36 -F <file>::
37 --file <file>::
38         Take the list of merged objects from <file> instead of
39         stdin.
41 CONFIGURATION
42 -------------
44 merge.log::
45         Whether to include summaries of merged commits in newly
46         merge commit messages. False by default.
48 SEE ALSO
49 --------
50 linkgit:git-merge[1]
53 Author
54 ------
55 Written by Junio C Hamano <gitster@pobox.com>
57 Documentation
58 --------------
59 Documentation by Petr Baudis, Junio C Hamano and the git-list <git@vger.kernel.org>.
61 GIT
62 ---
63 Part of the linkgit:git[1] suite