If .gitconfig contains showSignature = true, the signature check gets prepended to the output. It then gets confused for the message, and the summary becomes something like "gpg: Signature made ". Adding --no-show-signature overrides that setting to restore the expected output format of git show, letting the plugin display the actual commit summary as intended.
If". Adding
.gitconfig
containsshowSignature = true
, the signature check gets prepended to the output. It then gets confused for the message, and the summary becomes something like "gpg: Signature made--no-show-signature
overrides that setting to restore the expected output format ofgit show
, letting the plugin display the actual commit summary as intended.