in the Git http session, if they match the server. The file format
        of the file to read cookies from should be plain HTTP headers or
        the Netscape/Mozilla cookie file format (see linkgit:curl[1]).
 -      NOTE that the file specified with http.cookiefile is only used as
 +      NOTE that the file specified with http.cookieFile is only used as
        input unless http.saveCookies is set.
  
 -http.savecookies::
 +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.cookieFile. Has no effect if http.cookieFile is unset.
  
+ http.sslCipherList::
+   A list of SSL ciphers to use when negotiating an SSL connection.
+   The available ciphers 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_CIPHER_LIST'
+   option; see the libcurl documentation for more details on the format
+   of this list.
+ +
+ Can be overridden by the 'GIT_SSL_CIPHER_LIST' environment variable.
+ To force git to use libcurl's default cipher list and ignore any
+ explicit http.sslCipherList option, set 'GIT_SSL_CIPHER_LIST' to the
+ empty string.
+ 
  http.sslVerify::
        Whether to verify the SSL certificate when fetching or pushing
        over HTTPS. Can be overridden by the 'GIT_SSL_NO_VERIFY' environment