I want to use git at work through a proxy on Windows 7. My company has various proxies available. To get past the proxy for Python pip usage, I used the Cntlm program. With Cntlm, I was able to specify my domain\username and password, and used that to connect through / bypass the proxy server.
Not I want to use git. I don't know where to put the domain name in the proxy setting of git. Here are the steps that I followed in cmd on Windows 7.
set HTTP_PROXY=http://domain\username:password@proxyaddress:proxyport
git config --global http.proxy $HTTP_PROXY
git clone git://github.com/destination.git folder
This keeps timing out eventhough all my information is correct and Cntlm works with the same information. Can someone please assist in the correct procedure to get git to work through a proxy such as this?