構成オプション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
クッキー: my_cookie=my_value
ただし、git では効果がありません (curl の出力は同じですが、Cookie ヘッダーはありません)。
$export GIT_CURL_VERBOSE=1 && git clone https://github.com/my_url
my_url を取得 HTTP/1.1
ホスト: github.com
git バージョン 1.7.1
何が間違っている可能性がありますか?