aboutsummaryrefslogtreecommitdiff
path: root/t/t7510-signed-commit.sh
diff options
context:
space:
mode:
authorMehul Jain <mehul.jain2029@gmail.com>2016-06-22 22:21:26 +0530
committerJunio C Hamano <gitster@pobox.com>2016-06-24 13:01:13 -0700
commitfce04c3ca695d32c1b3c59e1bfc1fb4019025c72 (patch)
treefd1d6f953456512d916fa177b1856399732a1cc5 /t/t7510-signed-commit.sh
parentaa3799996c310da756c7845950def4f6d51cccf3 (diff)
downloadgit-fce04c3ca695d32c1b3c59e1bfc1fb4019025c72.tar.gz
git-fce04c3ca695d32c1b3c59e1bfc1fb4019025c72.tar.xz
log: add log.showSignature configuration variable
Users may want to always use "--show-signature" while using git-log and related commands. When log.showSignature is set to true, git-log and related commands will behave as if "--show-signature" was given to them. Note that this config variable is meant to affect git-log, git-show, git-whatchanged and git-reflog. Other commands like git-format-patch, git-rev-list are not to be affected by this config variable. Signed-off-by: Mehul Jain <mehul.jain2029@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t7510-signed-commit.sh')
-rwxr-xr-xt/t7510-signed-commit.sh7
1 files changed, 7 insertions, 0 deletions
diff --git a/t/t7510-signed-commit.sh b/t/t7510-signed-commit.sh
index 4177a8609..6e839f548 100755
--- a/t/t7510-signed-commit.sh
+++ b/t/t7510-signed-commit.sh
@@ -210,4 +210,11 @@ test_expect_success GPG 'show lack of signature with custom format' '
test_cmp expect actual
'
+test_expect_success GPG 'log.showsignature behaves like --show-signature' '
+ test_config log.showsignature true &&
+ git show initial >actual &&
+ grep "gpg: Signature made" actual &&
+ grep "gpg: Good signature" actual
+'
+
test_done