I'm trying to access a repository on Github from a Windows machine that is behind a proxy that requires NTLM authentication. Neither SSH nor the git:// protocol are directly available, so I'm trying to make this work with HTTPS through the proxy.
With the help of NTLM proxy without password? I have been able to make the curl
binary supplied with msysgit play nice with the proxy:
curl -U : --proxy-ntlm --proxy xxx.xxx.xx.xx:8080 https://github.com
This is successful and returns the Github home page.
However, I found an article from Feb 2010 Proxying Git that states (emphasis mine):
Unfortunately it appears that curl will always use Basic authentication with the proxy. If your proxy needs something else, perhaps NTLM for a Windows network, then you have a problem. Curl is used to handle all the http transport details and this does support the NTLM authentication method but I know of no method to pass the necessary options to curl. Git makes use of curl via its library binding so it is not enought just to replace the curl executable with a wrapper script.
I know about the core.gitproxy
option in the Git configuration, but that appears to only apply to the git:// protocol. Similarly, the http.proxy
option sets the address of the proxy, but provides no way to supply the appropriate options to curl.
github.com
to your own machine and make it act as a transparent proxy that then forwards to the NTLM proxy using the proper authentication. But by this time, it would easier to just setup a VPN and route the traffic to github.com through it. – Gothamcurl_easy_setopt(handle, CURLOPT_PROXYAUTH, CURLAUTH_NTLM)
together with the other usual options for proxy authentication (CURLOPT_PROXY
,CURLOPT_PROXY_TYPE
andCURLOPT_PROXYUSERPWD
). – Gotham