summaryrefslogtreecommitdiff
path: root/builtin/verify-commit.c
AgeCommit message (Collapse)AuthorFilesLines
2014-06-23verify-commit: scriptable commit signature verificationLibravatar Michael J Gruber1-0/+93
Commit signatures can be verified using "git show -s --show-signature" or the "%G?" pretty format and parsing the output, which is well suited for user inspection, but not for scripting. Provide a command "verify-commit" which is analogous to "verify-tag": It returns 0 for good signatures and non-zero otherwise, has the gpg output on stderr and (optionally) the commit object on stdout, sans the signature, just like "verify-tag" does. Signed-off-by: Michael J Gruber <git@drmicha.warpmail.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>