Failed to connect to github 443

I tried to make some changes to github using git push origin master , but after a while it found an error

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

I just created this repo and have done it twice already. I am connected to the Internet via home WiFi and OS on Mac OS X Yosemite 10.10.2.

+7
git push
source share
4 answers

The reason is a continuous DDoS attack ... https://status.github.com/messages

+3
source share

Are you for the proxy? Check the contents of C:\Users\[your username]\.gitconfig and make sure the proxy is configured:

 [http] proxy = http://yourproxy.com:8080 //change your settings here [https] proxy = http://yourproxy.com:8080 //change your settings here 
+11
source share

From 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 

If the port can be 3128 and userName: the password can be your Windows login credentials

+4
source share

Try setting up your environment using:

 sudo vim.tiny /etc/environment 

Add:

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

Add the proxy setting to the gitconfig file.

+1
source share

All Articles