diff options
author | Junio C Hamano <gitster@pobox.com> | 2011-11-29 12:29:48 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-11-29 12:30:02 -0800 |
commit | 0c5e70f041bfda8b3899d13694a9093b41fafa19 (patch) | |
tree | 326606059b3d2eea2d44cfa39c9946e10d005e24 /Documentation/config.txt | |
parent | f6667c5ee8148af28cc97049695f60f5105b3061 (diff) | |
download | git-0c5e70f041bfda8b3899d13694a9093b41fafa19.tar.gz |
gpg-interface: allow use of a custom GPG binaryjc/signed-commit
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/config.txt')
-rw-r--r-- | Documentation/config.txt | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Documentation/config.txt b/Documentation/config.txt index b30c7e6278..094c1c9de3 100644 --- a/Documentation/config.txt +++ b/Documentation/config.txt @@ -1094,6 +1094,17 @@ grep.lineNumber:: grep.extendedRegexp:: If set to true, enable '--extended-regexp' option by default. +gpg.program:: + Use this custom program instead of "gpg" found on $PATH when + making or verifying a PGP signature. The program must support the + same command line interface as GPG, namely, to verify a detached + signature, "gpg --verify $file - <$signature" is run, and the + program is expected to signal a good signature by exiting with + code 0, and to generate an ascii-armored detached signature, the + standard input of "gpg -bsau $key" is fed with the contents to be + signed, and the program is expected to send the result to its + standard output. + gui.commitmsgwidth:: Defines how wide the commit message window is in the linkgit:git-gui[1]. "75" is the default. |