0

when i am trying push to origin , after typing below command :

git push -u origin master

fatal : Unable to access 'https://github.com/jayaramarao/jayaportfolio.git'
Failed to connect to github.com port 443: Time out
CodeWizard
  • 128,036
  • 21
  • 144
  • 167
  • Sounds like a networking problem. Do you have to set up a proxy? – eftshift0 Apr 10 '17 at 15:16
  • 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) – Andrew Li Apr 10 '17 at 15:18

1 Answers1

0

looks like you behind a proxy.

Set the proxy on your machine and it should work

 git config --global http.proxy <ip>:<port>
CodeWizard
  • 128,036
  • 21
  • 144
  • 167