pull command error : Failed connect to github.com:8080 -
i tried pull repository can merge changes made repository.
while using pull command gives following error:
$ git pull https://github.com/shrutiruparel/depot.git master error: failed connect github.com:8080; no error while accessing https://github.com/shrutiruparel/depot.git/info/refs fatal: http request failed i tried setting http proxy no change.
push command worked fine error pull command.
suggestions?
i had same issue because forgot remove proxy configuration on git.
git config --global http.proxy if returns have unset value following command :
git config --global --unset http.proxy there lot of way set proxy git , maybe not one. can check environment variable.
echo $http_proxy after that, should works
Comments
Post a Comment