When try to clone a project using the git clone
command I got this following error message.
Failed to connect to github.com port 443: Time out
When try to clone a project using the git clone
command I got this following error message.
Failed to connect to github.com port 443: Time out
DDoS attack check this link https://status.github.com/
The connectivity problems have been identified as a DDoS attack. We're working to mitigate now.
Make sure that you have used
$ git remote add origin git@github.com:**yourname**/learngit.git
to connect your local repository to github.
If you find the following error:
fatal: remote origin already exists.
Then write the following statement in your git bash.
$ git remote rm origin
then write again to re-connect your repository to GitHub.
$ git remote add origin git@github.com:**yourname**/learngit.git
If the above steps can not help you, there must be some ssh errors I think.