无法连接到github 443

10 git push

我试图将一些更改推送到github使用git push origin master,但一段时间后它显示错误

fatal: unable to access 'https://github.com/the-unbelievable/MiniGames.git/': Failed to connect to github.com port 443: Operation timed out
Run Code Online (Sandbox Code Playgroud)

我刚刚创建了那个回购并且已经提交了两次.我通过Mac OS X Yosemite 10.10.2中的家庭WiFi和操作系统连接到Internet.

Dun*_*ken 14

你是代理人吗?检查内容C:\Users\[your username]\.gitconfig并确保配置代理:

[http]  
    proxy = http://yourproxy.com:8080  //change your settings here
[https] 
    proxy = http://yourproxy.com:8080  //change your settings here
Run Code Online (Sandbox Code Playgroud)


小智 5

原因是持续的DDoS攻击... https://status.github.com/messages

  • 链接中的页面是空白的,没有显示任何内容 (4认同)

pro*_*ica 5

从这里: GitHub - 无法连接到github 443窗口/无法连接到gitHub - 没有错误

git config --global http.proxy http[s]://userName:password@proxyaddress:port
Run Code Online (Sandbox Code Playgroud)

端口可能是3128,userName:password可能是您的Windows登录凭据