git push origin master causing a fatal error
I am trying to push a project on github, but whenever I do git push origin master
I'm getting this error:
error: Couldn't resolve proxy 'kp.proxy.com' while accessing https://github.com/rabidmachine9/node-supercollider.git/info/refs
fatal: HTTP request failed
EDIT: git version 1.7.3.1 , OS X 10.5.8, the kp.proxy.com won't work for sure, and it wasn't in my intention to use a proxy...I 开发者_开发问答just don't know how to get rid of it...
please help!
It seems you have configured Git to use a proxy server. But the server kp.proxy.com
doesn't resolve (for me, at least).
Do you have a proxy set? Check echo $http_proxy
. You can do unset http_proxy
.
Also, check .git/config and remove the proxy or set a working one (details see documentation)
I've just had the same issue & then found this post @ GitHub: https://github.com/blog/809-git-dumb-http-transport-to-be-turned-off-in-90-days
/dumb http!
精彩评论