Getting error 443 when checking code from github

I am trying to get nova code from github and I got the following error:

#git clone https://github.com/openstack/nova.git Initialized empty Git repository in /home/avikki/Desktop/nt/nova/.git/ error: Failed connect to github.com:443; Operation now in progress while accessing https://github.com/openstack/nova.git/info/refs fatal: HTTP request failed 

can you suggest what to do?

+4
source share
2 answers

It works for me without errors. You may have connection problems - please note that the error description states that git Failed to connect to github.com:443 . Check out this answer: GitHub is HTTPS access which offers some possible solutions.

+2
source

I had this problem twice. I am running Linux. The first time I was on a network that required a proxy. See this link to find out how to fix proxy settings: How can I extract from a Git repository through an HTTP proxy?

Then I took my configured proxy server to a network that did not require a proxy server, and again received this error.

To disconnect my computer for a proxy server,

 git config --global --unset http.proxy unset http_proxy unset https_proxy unset ftp_proxy unset all_proxy unset FTP_PROXY unset ALL_PROXY unset HTTPS_PROXY unset HTTP_PROXY 

I'm not sure I needed to disable all of these variables, but I certainly need more than just the first two.

0
source

All Articles