克隆失败无法访问" https://....."连接到github失败:443没有错误

时间:2014-12-03 22:54:53

标签: git github git-push git-clone

我正在使用Android项目而且我厌倦了这个错误:

  

fatal: unable to access 'https://github.com/caddy2519/MyBabyGrowing.git/': Failed connect to github.com:443; No error

我该如何解决这个问题?

我不使用代理服务器。

2 个答案:

答案 0 :(得分:1)

检查您的网络是否受到保护,如果是,您可以为answer中提供的git配置代理,如下所示:

git config --global http.proxy http://proxyuser:proxypwd@proxy.server.com:8080
  • 将proxyuser更改为您的代理用户
  • 将proxypwd更改为您的代理密码
  • 将proxy.server.com更改为代理服务器的URL
  • 将8080更改为代理服务器上配置的代理端口

否则,你应该考虑全新安装git。

答案 1 :(得分:0)