diff options
author | Junio C Hamano <gitster@pobox.com> | 2020-01-30 23:17:08 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-01-30 23:17:08 +0100 |
commit | 11ad30b887e2512df1c7703913048827080601e1 (patch) | |
tree | f9dcd7481c4ecd335d3f2c76a7637433d8d59d9e /Documentation/config | |
parent | Merge branch 'am/test-pathspec-f-f-error-cases' (diff) | |
parent | gpg-interface: add minTrustLevel as a configuration option (diff) | |
download | git-11ad30b887e2512df1c7703913048827080601e1.tar.xz git-11ad30b887e2512df1c7703913048827080601e1.zip |
Merge branch 'hi/gpg-mintrustlevel'
gpg.minTrustLevel configuration variable has been introduced to
tell various signature verification codepaths the required minimum
trust level.
* hi/gpg-mintrustlevel:
gpg-interface: add minTrustLevel as a configuration option
Diffstat (limited to 'Documentation/config')
-rw-r--r-- | Documentation/config/gpg.txt | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Documentation/config/gpg.txt b/Documentation/config/gpg.txt index cce2c89245..d94025cb36 100644 --- a/Documentation/config/gpg.txt +++ b/Documentation/config/gpg.txt @@ -18,3 +18,18 @@ gpg.<format>.program:: chose. (see `gpg.program` and `gpg.format`) `gpg.program` can still be used as a legacy synonym for `gpg.openpgp.program`. The default value for `gpg.x509.program` is "gpgsm". + +gpg.minTrustLevel:: + Specifies a minimum trust level for signature verification. If + this option is unset, then signature verification for merge + operations require a key with at least `marginal` trust. Other + operations that perform signature verification require a key + with at least `undefined` trust. Setting this option overrides + the required trust-level for all operations. Supported values, + in increasing order of significance: ++ +* `undefined` +* `never` +* `marginal` +* `fully` +* `ultimate` |