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
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.