aboutsummaryrefslogtreecommitdiff
path: root/Documentation/config.txt
diff options
context:
space:
mode:
authorPeter Baumann <Peter.B.Baumann@stud.informatik.uni-erlangen.de>2006-11-23 10:36:33 +0100
committerJunio C Hamano <junkio@cox.net>2006-11-24 02:35:26 -0800
commit0f03ca946142bd656c1af9ff811cb9efbc8314da (patch)
tree0f3114f2afe704ea8356355debf8427af9ca68c5 /Documentation/config.txt
parent3fbe2d54d7d91378934df7b16d70dc5877586fae (diff)
downloadgit-0f03ca946142bd656c1af9ff811cb9efbc8314da.tar.gz
git-0f03ca946142bd656c1af9ff811cb9efbc8314da.tar.xz
config option log.showroot to show the diff of root commits
This allows one to see a root commit as a diff in commands like git-log, git-show and git-whatchanged. Signed-off-by: Peter Baumann <Peter.B.Baumannn@stud.informatik.uni-erlangen.de> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Documentation/config.txt')
-rw-r--r--Documentation/config.txt6
1 files changed, 6 insertions, 0 deletions
diff --git a/Documentation/config.txt b/Documentation/config.txt
index 9d3c71c3b..909076281 100644
--- a/Documentation/config.txt
+++ b/Documentation/config.txt
@@ -219,6 +219,12 @@ i18n.commitEncoding::
browser (and possibly at other places in the future or in other
porcelains). See e.g. gitlink:git-mailinfo[1]. Defaults to 'utf-8'.
+log.showroot::
+ If true, the initial commit will be shown as a big creation event.
+ This is equivalent to a diff against an empty tree.
+ Tools like gitlink:git-log[1] or gitlink:git-whatchanged[1], which
+ normally hide the root commit will now show it. True by default.
+
merge.summary::
Whether to include summaries of merged commits in newly created
merge commit messages. False by default.