Documentation / git-fmt-merge-msg.txton commit Merge branch 'maint' (4662231)
   1git-fmt-merge-msg(1)
   2====================
   3
   4NAME
   5----
   6git-fmt-merge-msg - Produce a merge commit message
   7
   8
   9SYNOPSIS
  10--------
  11git-fmt-merge-msg [--summary | --no-summary] <$GIT_DIR/FETCH_HEAD
  12git-fmt-merge-msg [--summary | --no-summray] -F <file>
  13
  14DESCRIPTION
  15-----------
  16Takes the list of merged objects on stdin and produces a suitable
  17commit message to be used for the merge commit, usually to be
  18passed as the '<merge-message>' argument of `git-merge`.
  19
  20This script is intended mostly for internal use by scripts
  21automatically invoking `git-merge`.
  22
  23OPTIONS
  24-------
  25
  26--summary::
  27        In addition to branch names, populate the log message with
  28        one-line descriptions from the actual commits that are being
  29        merged.
  30
  31--no-summary::
  32        Do not list one-line descriptions from the actual commits being
  33        merged.
  34
  35--file <file>, -F <file>::
  36        Take the list of merged objects from <file> instead of
  37        stdin.
  38
  39CONFIGURATION
  40-------------
  41
  42merge.summary::
  43        Whether to include summaries of merged commits in newly
  44        merge commit messages. False by default.
  45
  46SEE ALSO
  47--------
  48gitlink:git-merge[1]
  49
  50
  51Author
  52------
  53Written by Junio C Hamano <junkio@cox.net>
  54
  55Documentation
  56--------------
  57Documentation by Petr Baudis, Junio C Hamano and the git-list <git@vger.kernel.org>.
  58
  59GIT
  60---
  61Part of the gitlink:git[7] suite
  62