Setup and Config
Getting and Creating Projects
Basic Snapshotting
Branching and Merging
Sharing and Updating Projects
Inspection and Comparison
Patching
Debugging
External Systems
Administration
Server Admin
Plumbing Commands
- 1.7.9.4 → 1.8.2.3 no changes
-
1.7.9.3
03/05/12
- 1.7.5.1 → 1.7.9.2 no changes
-
1.7.5
04/24/11
- 1.7.4.1 → 1.7.4.5 no changes
-
1.7.4
01/31/11
- 1.7.3.1 → 1.7.3.5 no changes
-
1.7.3
09/18/10
- 1.7.0.1 → 1.7.2.5 no changes
-
1.7.0
02/12/10
- 1.6.5.1 → 1.6.6.3 no changes
-
1.6.5
10/10/09
- 1.6.0.1 → 1.6.4.5 no changes
-
1.6.0
08/17/08
- 1.5.6.6 no changes
-
1.5.6.5
08/06/08
- 1.5.6.1 → 1.5.6.4 no changes
-
1.5.6
06/18/08
- 1.5.4.1 → 1.5.5.6 no changes
-
1.5.4
02/02/08
git-fmt-merge-msg(1) Manual Page
NAME
git-fmt-merge-msg - Produce a merge commit message
SYNOPSIS
git fmt-merge-msg [--log | --no-log] <$GIT_DIR/FETCH_HEAD git fmt-merge-msg [--log | --no-log] -F <file>
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.
OPTIONS
- --log
In addition to branch names, populate the log message with one-line descriptions from the actual commits that are being merged.
- --no-log
Do not list one-line descriptions from the actual commits being merged.
- --summary
- --no-summary
Synonyms to --log and --no-log; these are deprecated and will be removed in the future.
- -F <file>
- --file <file>
Take the list of merged objects from <file> instead of stdin.
CONFIGURATION
- merge.log
Whether to include summaries of merged commits in newly merge commit messages. False by default.
- merge.summary
Synonym to merge.log; this is deprecated and will be removed in the future.
SEE ALSO
Author
Written by Junio C Hamano <gitster@pobox.com>
Documentation
Documentation by Petr Baudis, Junio C Hamano and the git-list <git@vger.kernel.org>.
GIT
Part of the git(1) suite