diff options
author | Junio C Hamano <gitster@pobox.com> | 2022-09-15 18:06:55 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2022-09-15 20:34:51 +0200 |
commit | 29491ca5fd8dcc4d60b985548c133756590b4b8a (patch) | |
tree | ea07dcc8f06ea8df6f06c3326e8fd4b4f98f7203 | |
parent | Merge a handful of topics from the 'master' front (diff) | |
download | git-29491ca5fd8dcc4d60b985548c133756590b4b8a.tar.xz git-29491ca5fd8dcc4d60b985548c133756590b4b8a.zip |
environ: document GIT_SSL_NO_VERIFY
Even though the name of the environment variable is mentioned in
"git config --help" from http.sslVerify, there is no description for
it. Add one.
Note that this is not a usual Boolean environment variable whose
value can be yes/true/on vs no/false/off; the existence of it is
enough to trigger the feature named by the variable.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | Documentation/git.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Documentation/git.txt b/Documentation/git.txt index 47a6095ff4..0b562981b7 100644 --- a/Documentation/git.txt +++ b/Documentation/git.txt @@ -665,6 +665,11 @@ for further details. plink or tortoiseplink. This variable overrides the config setting `ssh.variant` that serves the same purpose. +`GIT_SSL_NO_VERIFY`:: + Setting and exporting this environment variable to any value + tells Git not to verify the SSL certificate when fetching or + pushing over HTTPS. + `GIT_ASKPASS`:: If this environment variable is set, then Git commands which need to acquire passwords or passphrases (e.g. for HTTP or IMAP authentication) |