无法连接到 github 443

Failed to connect to github 443

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

fatal: unable to access 'https://github.com/the-unbelievable/MiniGames.git/': Failed to connect to github.com port 443: Operation timed out

我刚刚创建了那个 repo 并且已经提交了两次。我通过家庭 WiFi 和 OS 在 Mac OS X Yosemite 10.10.2.

中连接到互联网

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

你有代理吗?检查 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

从这里开始: GitHub - failed to connect to github 443 windows/ Failed to connect to gitHub - No Error

git config --global http.proxy http[s]://userName:password@proxyaddress:port

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

尝试使用以下方式配置环境:

sudo vim.tiny /etc/environment

在那里添加:

http_proxy=http://your.proxy.server.address:port
https_proxy=http://your.proxy.server.address:port
ftp_proxy=http://your.proxy.server.address:port

也在 gitconfig 文件中添加代理设置。