6 git-fmt-merge-msg - Produce a merge commit message
12 git-fmt-merge-msg [--summary | --no-summary] <$GIT_DIR/FETCH_HEAD
13 git-fmt-merge-msg [--summary | --no-summray] -F <file>
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`.
28 In addition to branch names, populate the log message with
29 one-line descriptions from the actual commits that are being
33 Do not list one-line descriptions from the actual commits being
36 --file <file>, -F <file>::
37 Take the list of merged objects from <file> instead of
44 Whether to include summaries of merged commits in newly
45 merge commit messages. False by default.
54 Written by Junio C Hamano <junkio@cox.net>
58 Documentation by Petr Baudis, Junio C Hamano and the git-list <git@vger.kernel.org>.
62 Part of the gitlink:git[7] suite