0

larrybin at LarrydeMacBook-Pro in ~/test_site
[$ git clone https://github.com/LarryBrin/coursera-test.git ]
Cloning into 'coursera-test' ...
Fatal unable to access 'https://github.com/LarryBrin/coursera-test.git/' : Failed to connect to github.com port 443: Operation timed out

I have searched on Google and StackOverflow throughout, but cannot find the answer. Can you tell what the problem is?

evolutionxbox
  • 3,932
  • 6
  • 34
  • 51
Larry Brin
  • 1
  • 1
  • 1
  • Need to enter `git` instead of `https`? – claudios Nov 04 '16 at 06:05
  • Possible duplicate of [GitHub - failed to connect to github 443 windows/ Failed to connect to gitHub - No Error](http://stackoverflow.com/questions/18356502/github-failed-to-connect-to-github-443-windows-failed-to-connect-to-github) – evolutionxbox Nov 04 '16 at 11:43

1 Answers1

0

Check with this.

git clone git@github.com:LarryBrin/coursera-test.git

If you use http first set proxy and check with above command:

git config --global http.proxy [Ip_Address]:[port_number]
Chandana Kumara
  • 2,485
  • 1
  • 22
  • 25