diff options
author | Junio C Hamano <gitster@pobox.com> | 2016-02-24 13:25:57 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-02-24 13:25:57 -0800 |
commit | 65ba75ba7daae3298139f18cf866a23d01f4dd48 (patch) | |
tree | 9b2dfd15024eb48e2bdbce57cacfeb118de75820 /Documentation | |
parent | 97c49af6a7c30ca8bf7183bdac8345ca3f8abe56 (diff) | |
parent | 121061f67fd47aed5b2f3a7deb82af15215636bd (diff) | |
download | git-65ba75ba7daae3298139f18cf866a23d01f4dd48.tar.gz git-65ba75ba7daae3298139f18cf866a23d01f4dd48.tar.xz |
Merge branch 'bc/http-empty-auth'
Some authentication methods do not need username or password, but
libcurl needs some hint that it needs to perform authentication.
Supplying an empty username and password string is a valid way to
do so, but you can set the http.[<url>.]emptyAuth configuration
variable to achieve the same, if you find it cleaner.
* bc/http-empty-auth:
http: add option to try authentication without username
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/config.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Documentation/config.txt b/Documentation/config.txt index 01cca0a70..542cb229c 100644 --- a/Documentation/config.txt +++ b/Documentation/config.txt @@ -1648,6 +1648,12 @@ http.proxyAuthMethod:: * `ntlm` - NTLM authentication (compare the --ntlm option of `curl(1)`) -- +http.emptyAuth:: + Attempt authentication without seeking a username or password. This + can be used to attempt GSS-Negotiate authentication without specifying + a username in the URL, as libcurl normally requires a username for + authentication. + http.cookieFile:: File containing previously stored cookie lines which should be used in the Git http session, if they match the server. The file format |