Failed to connect to bitbucket.org port 443: Network is unreachable

前端 未结 17 866
梦如初夏
梦如初夏 2020-12-05 14:50

I am getting issue while pushing code.

git push origin master

fatal: unable to access \'https://xxxxxxxxxx@bitbucket.org/xxxxxx/xxxxxx.git/\': 
Failed to co         


        
17条回答
  •  借酒劲吻你
    2020-12-05 15:16

    I got this resolved. One of the reasons it happens is due to your system being on proxy network. In that case you have to run below command :

    $ git config --global http.proxy http://username:password@proxy:port

    where, username : your system userID| password : system password | proxy : Ip address of the proxy you are using | port : Of that proxy|

    This was hapenning due to network limitation of my organization network.

提交回复
热议问题