配置选项git config --global http.cookiefile /<absolute path>/my_cookiefile
似乎对 git 没有任何影响。具有以下 cookiefile :
设置 Cookie:my_cookie=my_value; 路径=/; 域名=.github.com
该文件可以直接使用:
$curl -v --cookie my_cookiefile https://github.com/my_url
GET my_url HTTP/1.1
主机:github.com
Cookie:my_cookie=my_value
但它对 git 没有影响(相同的 curl 输出但没有 cookie 标头):
$export GIT_CURL_VERBOSE=1 && git clone https://github.com/my_url
GET my_url HTTP/1.1
主机:github.com
git 版本 1.7.1
知道什么可能是错的吗?