Git Bash on windows 7 behind proxy no longer working -
i'm on windows 7, 32 bit box, , working behind proxy. upgraded git client (git bash) git-1.8.3-preview20130601
, , of sudden, i'm getting following error whenever try push/pull:
fatal: unable access 'https://github.com/user/simple_timesheets.git/: received http code 407 proxy after connect
i able fine before upgrading, , when tried revert last version think had, still error. when run git config -l
, lists out following variables (among others):
user.name=myname user.email=my@email.com http.proxy=http://user:password@server:port core.autocrlf=true https.proxy=http://user:password@server:port http.sslcainfo=/bin/curl-ca-bundle.crt
what's odd seem able use git bash
client curl fine
curl finance.yahoo.com --proxy http://user:password@server:port
and can curl dummy https site set on computer:
curl https://localhost:3000 --insecure
any ideas i'm missing? thanks
edit:
i wrong, think there might issue curl in version 1.8.3. uninstalled git related applications think of on computer, , installed git-1.8.0-preview20121022
, ran pull on repo , successful.
for giggles, uninstalled working version, , kept cert file; reinstalled version 1.8.3 see if didn't have it, got same error trying resolve.
also, after re-installing version 1.8.0, tried curl https website (gmail), following command: curl https://www.gmail.com --proxy http://user:pass@server:port
, successful. when did under 1.8.3, got error code 407. version switch seems solved this.
i had same issue resolved using 2 proxy filters:
"--proxy or -x" , "--proxy-user".
curl -x http://proxyserverurl:port --proxy-user username:password -l http://url
though have tried not wrong might not compatible curl version.
hope helps!
Comments
Post a Comment