diff options
author | brian m. carlson <sandals@crustytoothpaste.net> | 2015-06-21 23:14:42 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-06-22 14:20:47 -0700 |
commit | aeff29dd4dab01b497b2a2cf73e982e846a5fe4c (patch) | |
tree | 368a26eec5e618e2496ffd991dd8c702caa72473 /gpg-interface.h | |
parent | ca194d50b84b53a0b711fef46d1a47657ec5da41 (diff) | |
download | git-aeff29dd4dab01b497b2a2cf73e982e846a5fe4c.tar.gz |
verify-commit: add option to print raw gpg status information
verify-commit by default displays human-readable output on standard
error. However, it can also be useful to get access to the raw gpg
status information, which is machine-readable, allowing automated
implementation of signing policy. Add a --raw option to make
verify-commit produce the gpg status information on standard error
instead of the human-readable format.
Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'gpg-interface.h')
-rw-r--r-- | gpg-interface.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gpg-interface.h b/gpg-interface.h index 1207861e7a..ea68885ad5 100644 --- a/gpg-interface.h +++ b/gpg-interface.h @@ -2,6 +2,7 @@ #define GPG_INTERFACE_H #define GPG_VERIFY_VERBOSE 1 +#define GPG_VERIFY_RAW 2 struct signature_check { char *payload; |