summaryrefslogtreecommitdiffstats
path: root/config.txt
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2015-08-26 16:07:07 -0700
committerJunio C Hamano <gitster@pobox.com>2015-08-26 16:07:07 -0700
commita1746beedbce9412b13bc85b0c80649896e30339 (patch)
tree25fe0e70c6522d18a4cfc8545491afd6f14b2b54 /config.txt
parent37e467db1ae6d0d307d36266b40178c199ea4b62 (diff)
downloadgit-htmldocs-a1746beedbce9412b13bc85b0c80649896e30339.tar.gz
Autogenerated HTML docs for v2.5.0-474-g3a983
Diffstat (limited to 'config.txt')
-rw-r--r--config.txt25
1 files changed, 24 insertions, 1 deletions
diff --git a/config.txt b/config.txt
index 75ec02e8e..f5d15fff3 100644
--- a/config.txt
+++ b/config.txt
@@ -1329,7 +1329,7 @@ gc.<pattern>.reflogExpire::
the refs that match the <pattern>.
gc.reflogExpireUnreachable::
-gc.<ref>.reflogExpireUnreachable::
+gc.<pattern>.reflogExpireUnreachable::
'git reflog expire' removes reflog entries older than
this time and are not reachable from the current tip;
defaults to 30 days. The value "now" expires all entries
@@ -1609,6 +1609,29 @@ http.saveCookies::
If set, store cookies received during requests to the file specified by
http.cookieFile. Has no effect if http.cookieFile is unset.
+http.sslVersion::
+ The SSL version to use when negotiating an SSL connection, if you
+ want to force the default. The available and default version
+ depend on whether libcurl was built against NSS or OpenSSL and the
+ particular configuration of the crypto library in use. Internally
+ this sets the 'CURLOPT_SSL_VERSION' option; see the libcurl
+ documentation for more details on the format of this option and
+ for the ssl version supported. Actually the possible values of
+ this option are:
+
+ - sslv2
+ - sslv3
+ - tlsv1
+ - tlsv1.0
+ - tlsv1.1
+ - tlsv1.2
+
++
+Can be overridden by the 'GIT_SSL_VERSION' environment variable.
+To force git to use libcurl's default ssl version and ignore any
+explicit http.sslversion option, set 'GIT_SSL_VERSION' to the
+empty string.
+
http.sslCipherList::
A list of SSL ciphers to use when negotiating an SSL connection.
The available ciphers depend on whether libcurl was built against