Failed to connect to bitbucket.org port 443: Operation timed out

导致这个问题的原因可能很多,相关解决方案可以先参考:
https://stackoverflow.com/questions/38606443/failed-to-connect-to-bitbucket-org-port-443-network-is-unreachable

但是,这写方案don’t work for me.
后面发现,小编遇到的问题是由“【翻】【墙】软件”的存在导致。
尽管通过浏览器可以访问bitbucket,但是在终端或者sourcetree上死活无法进行pull, push等操作。
Root Cause:“【翻】【墙】软件”使用了http proxy,所以也得为git设置相同的http proxy。
所以,解决方法是:
1,查看“【翻】【墙】软件”所使用的http proxy
2,给git设置相同的http proxy

git config --global http.proxy http://用户名:用户密码@127.0.0.1:1087

小编的这个解决方案是参考(感谢):
https://blog.csdn.net/listener51/article/details/79505812

你可能感兴趣的:(tool,use,git,bitbucket,http,proxy)