¿Funciona el clon de git a través de proxies NTLM?

He intentado tanto usandoexport http_proxy=http://[username]:[pwd]@[proxy] ygit config --global http.proxy http://[username]:[pwd]@[proxy].

No pude hacerlo funcionar. Parece que git usa autenticación básica:

Initialized empty Git repository in /home/.../.git/
* Couldn't find host github.com in the .netrc file, using defaults
* About to connect() to github.com port 8080 (#0)
*   Trying 10.... * Connected to github.com (10....) port 8080 (#0)
* Proxy auth using Basic with user '...'
> GET http://github.com/sunlightlabs/fiftystates.git/info/refs HTTP/1.1
Proxy-Authorization: Basic MD...
User-Agent: git/1.6.1.2
Host: github.com
Pragma: no-cache
Accept: */*
Proxy-Connection: Keep-Alive

< HTTP/1.1 407 Proxy Authentication Required ( The ISA Server requires authorization to fulfill the request. Access to t
he Web Proxy filter is denied.  )
< Via: 1.1 ...
< Proxy-Authenticate: Negotiate
< Proxy-Authenticate: Kerberos
< Proxy-Authenticate: NTLM
< Connection: Keep-Alive
< Proxy-Connection: Keep-Alive
< Pragma: no-cache
< Cache-Control: no-cache
< Content-Type: text/html
< Content-Length: 4118
* The requested URL returned error: 407
* Closing connection #0
fatal: http://github.com/sunlightlabs/fiftystates.git/info/refs download error - The requested URL returned error: 407

La búsqueda en Google arrojó resultados mixtos y probablemente no actualizados. En algún lugar dice esocurl se usa (fue?) bajo el capó, pero sus opciones están (¿fueron?) incorporadas en el código. Por ejemplo,

curl --proxy-ntlm --proxy ...:8080 google.com

funciona, y me gustaría usar la misma opción con git.

Necesito algunas respuestas más definidas aquí: ¿Alguien ha tenido éxito usando git a través de proxies de Windows? ¿Cual version?

Gracias.

Respuestas a la pregunta(9)

Su respuesta a la pregunta