diff options
author | Kyle Meyer <kyle@kyleam.com> | 2017-05-19 04:44:51 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-05-20 11:32:17 +0200 |
commit | ba4dce784e4db4c00c5d54bb22c239080049b3ee (patch) | |
tree | bf8c19506da2ab408714e6302ea8e75e848b34a0 /Documentation/config.txt | |
parent | Git 2.12.3 (diff) | |
download | git-ba4dce784e4db4c00c5d54bb22c239080049b3ee.tar.xz git-ba4dce784e4db4c00c5d54bb22c239080049b3ee.zip |
config.txt: add an entry for log.showSignature
The configuration variable log.showSignature is mentioned in git-log's
manpage. Document it in git-config's manpage as well.
Signed-off-by: Kyle Meyer <kyle@kyleam.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to '')
-rw-r--r-- | Documentation/config.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Documentation/config.txt b/Documentation/config.txt index e43d147825..ef8e5b9458 100644 --- a/Documentation/config.txt +++ b/Documentation/config.txt @@ -2057,6 +2057,10 @@ log.showRoot:: Tools like linkgit:git-log[1] or linkgit:git-whatchanged[1], which normally hide the root commit will now show it. True by default. +log.showSignature:: + If true, makes linkgit:git-log[1], linkgit:git-show[1], and + linkgit:git-whatchanged[1] assume `--show-signature`. + log.mailmap:: If true, makes linkgit:git-log[1], linkgit:git-show[1], and linkgit:git-whatchanged[1] assume `--use-mailmap`. |