On Thu, May 26, 2016 at 8:06 AM, Mehul Jain <mehul.jain2029@xxxxxxxxx> wrote: > Add a new configuratation variable "log.showSignature" for git-log and > git-show. "log.showSignature=true" will enable user to see GPG signature > by default while using git-log and git-show. > > [Patch 1/2] introduce the config variable along with some tests. > [Patch 2/2] tackles the problem: what if user wants to disable the > setting of "log.showSignature=true" using a command line > switch. > > Previous discussion on this: http://thread.gmane.org/gmane.comp.version-control.git/295405 > > Mehul Jain (2): > log: add "log.showsignature" configuration variable > log: add "--no-show-signature" command line option > > Documentation/git-log.txt | 4 ++++ > builtin/log.c | 6 ++++++ > revision.c | 2 ++ > t/t4202-log.sh | 26 ++++++++++++++++++++++++++ > t/t7510-signed-commit.sh | 7 +++++++ > 5 files changed, 45 insertions(+) > > -- > 2.9.0.rc0.dirty > Hi Mehul, Thanks for working on this. With your patch and git config log.showsignature = true, git log and git show now display signatures for me: austin@debian-laptop:~/src/winetricks$ ~/src/git/git config log.showsignature true austin@debian-laptop:~/src/winetricks$ ~/src/git/git log -n 1 commit 3399c38411259bf171fc32a3e145bc49fee2291e gpg: Signature made Tue 10 May 2016 01:04:14 AM CDT using RSA key ID A041937B gpg: Good signature from "Austin English (Austin English personal gmail key) <austinenglish@xxxxxxxxx>" Author: Austin English <austinenglish@xxxxxxxxx> Date: Tue May 10 01:04:14 2016 -0500 release.sh: allow overridding version austin@debian-laptop:~/src/winetricks$ ~/src/git/git show commit 3399c38411259bf171fc32a3e145bc49fee2291e gpg: Signature made Tue 10 May 2016 01:04:14 AM CDT using RSA key ID A041937B gpg: Good signature from "Austin English (Austin English personal gmail key) <austinenglish@xxxxxxxxx>" Author: Austin English <austinenglish@xxxxxxxxx> Date: Tue May 10 01:04:14 2016 -0500 release.sh: allow overridding version diff --git a/src/release.sh b/src/release.sh index 442df33..03a9462 100755 --- a/src/release.sh +++ b/src/release.sh @@ -1,6 +1,8 @@ #!/bin/sh # Trivial release helper for winetricks # +# Usage: $0 optional_version_name +# # Copyright (C) 2016 Austin English # # This software comes with ABSOLUTELY NO WARRANTY. @@ -19,7 +21,7 @@ if [ ! -f Makefile ] ; then exit 1 fi -version="$(date +%Y%m%d)" +version="${1:-$(date +%Y%m%d)}" if git tag | grep ${version} ; then echo "A tag for ${version} already exists!" Please CC me on future patches if you'd like me to test them. Thanks again for your help! -- -Austin -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html