diff options
author | Peter Baumann <Peter.B.Baumann@stud.informatik.uni-erlangen.de> | 2006-11-23 10:36:33 +0100 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-11-24 02:35:26 -0800 |
commit | 0f03ca946142bd656c1af9ff811cb9efbc8314da (patch) | |
tree | 0f3114f2afe704ea8356355debf8427af9ca68c5 /Documentation | |
parent | Merge branch 'jc/upload-pack' (diff) | |
download | tgif-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')
-rw-r--r-- | Documentation/config.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Documentation/config.txt b/Documentation/config.txt index 9d3c71c3b8..9090762819 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. |