GitHub - failed to connect to github 443 windows/ Failed to connect to gitHub - No Error

Anand

Q - I installed git to get the latest version of Angular. When I tried to run

git clone https://github.com/angular/angular-phonecat.git

I got failed to connect to github 443 error

I even tried

git clone git://github.com/angular/angular-phonecat.git

That gave me failed to connect no error message.

I am behind my company firewall. I can not see my proxy details when I go to control panel->Internet Options -> connections -> LAN setting. IT guys are not sharing proxy information with me. I do not know what to do ??

I finally managed to do it. I will update the procedure that I had taken in order to Just wanted to compile all the steps that I did to get it to work

Anand

Well I did following steps

  1. Google the error

  2. Got to SO Links(here, here) which suggested the same thing, that I have to update the Git Config for proxy setting

  3. Damn, can not see proxy information from control panel. IT guys must have hidden it. I can not even change the setting to not to use proxy.

  4. Found this wonderful tutorial of finding which proxy your are connected to

  5. Updated the http.proxy key in git config by following command

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

  1. Error - could not resolve proxy some@proxyaddress:port. It turned out my password had @ symbol in it.

  2. Encode @ in your password to %40, because git splits the proxy setting by @

  3. If your userName is a email address, which has @, also encode it to %40. (see this answer)

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

Baam ! It worked !

Note - I just wanted to answer this question for souls like me, who would come looking for answer on SO :D

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Failed to connect to github 443

From Dev

Github error: Failed to connect to 443 port

From Dev

Failed to connect to github.com port 443: Time out

From Dev

Can't update cocoa pods Error: Failed to connect to github.com port 443: Connection refused

From Dev

"Failed to connect to repository" in Jenkins on OSX to GitHub

From Dev

GitHub for Windows: Login Failed

From Dev

Not able to commit in github: not able to connect port 443

From Dev

Github - Fatal Authentication Failed - Yet I can still connect?

From Dev

Mailer Error: SMTP connect() failed in php mailer( https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting)

From Dev

GitHub for Windows: login failed with .Net 4.5.2

From Dev

Github: failed to clone a repository

From Dev

Failed to push changes to GitHub

From Dev

github server verification failed

From Dev

Login failed in github for window

From Dev

Notification on failed GitHub WebHooks?

From Dev

Failed to push changes to GitHub

From Dev

GitHub Failed to sync this branch

From Dev

Failed to create GitHub repository

From Dev

push failed error message github large files

From Dev

push failed error message github large files

From Dev

connect git to Github account

From Java

fatal: unable to access 'https://github.com/xxx': OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to github.com:443

From Dev

Failed to connect to repository : Error performing command: git.exe ls-remote -h https://github.com/szabbas/Sample-programs.git HEAD

From Dev

Failed to push some refs to GitHub

From Dev

Link Github to Namecheap: Validation failed

From Dev

GitHub: Clone succeeded, but checkout failed

From Dev

github: server certificate verification failed

From Dev

IntelliJ Idea & Github: Clone Failed

From Dev

How to connect to github via netbeans?

Related Related

  1. 1

    Failed to connect to github 443

  2. 2

    Github error: Failed to connect to 443 port

  3. 3

    Failed to connect to github.com port 443: Time out

  4. 4

    Can't update cocoa pods Error: Failed to connect to github.com port 443: Connection refused

  5. 5

    "Failed to connect to repository" in Jenkins on OSX to GitHub

  6. 6

    GitHub for Windows: Login Failed

  7. 7

    Not able to commit in github: not able to connect port 443

  8. 8

    Github - Fatal Authentication Failed - Yet I can still connect?

  9. 9

    Mailer Error: SMTP connect() failed in php mailer( https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting)

  10. 10

    GitHub for Windows: login failed with .Net 4.5.2

  11. 11

    Github: failed to clone a repository

  12. 12

    Failed to push changes to GitHub

  13. 13

    github server verification failed

  14. 14

    Login failed in github for window

  15. 15

    Notification on failed GitHub WebHooks?

  16. 16

    Failed to push changes to GitHub

  17. 17

    GitHub Failed to sync this branch

  18. 18

    Failed to create GitHub repository

  19. 19

    push failed error message github large files

  20. 20

    push failed error message github large files

  21. 21

    connect git to Github account

  22. 22

    fatal: unable to access 'https://github.com/xxx': OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to github.com:443

  23. 23

    Failed to connect to repository : Error performing command: git.exe ls-remote -h https://github.com/szabbas/Sample-programs.git HEAD

  24. 24

    Failed to push some refs to GitHub

  25. 25

    Link Github to Namecheap: Validation failed

  26. 26

    GitHub: Clone succeeded, but checkout failed

  27. 27

    github: server certificate verification failed

  28. 28

    IntelliJ Idea & Github: Clone Failed

  29. 29

    How to connect to github via netbeans?

HotTag

Archive