summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: d8abe14)
raw | patch | inline | side by side (parent: d8abe14)
author | SZEDER Gábor <szeder@ira.uka.de> | |
Sun, 6 Apr 2008 01:23:44 +0000 (03:23 +0200) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Sun, 13 Apr 2008 02:28:18 +0000 (19:28 -0700) |
This variable has the same effect, as 'merge.diffstat'.
Also mention it in the documentation.
Signed-off-by: SZEDER Gábor <szeder@ira.uka.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Also mention it in the documentation.
Signed-off-by: SZEDER Gábor <szeder@ira.uka.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/merge-config.txt | patch | blob | history | |
Documentation/merge-options.txt | patch | blob | history | |
git-merge.sh | patch | blob | history |
index cc815cc214f3d860dd0f700b7ed3a1af7684f933..6d0a7971c2f229b20c121b821731e70897f0b1b2 100644 (file)
+merge.stat::
+ Whether to print the diffstat berween ORIG_HEAD and merge result
+ at the end of the merge. True by default.
+
merge.summary::
Whether to include summaries of merged commits in newly created
merge commit messages. False by default.
index 79041726447d7bb5d0671c78e0378c53368aa238..d4af5e2664d3e26c9d360a9b8b59fdc7cc878db6 100644 (file)
--stat::
Show a diffstat at the end of the merge. The diffstat is also
- controlled by the configuration option merge.diffstat.
+ controlled by the configuration option merge.stat.
-n, \--no-stat::
Do not show diffstat at the end of the merge.
diff --git a/git-merge.sh b/git-merge.sh
index 0b15924006b2307eb70308dcf854c05e7dd05c98..793c015550e26a8107e868ee447665ff227210ab 100755 (executable)
--- a/git-merge.sh
+++ b/git-merge.sh
if test -z "$show_diffstat"; then
test "$(git config --bool merge.diffstat)" = false && show_diffstat=false
+ test "$(git config --bool merge.stat)" = false && show_diffstat=false
test -z "$show_diffstat" && show_diffstat=t
fi