0

I have my credential setup for git but when i try to clone private repository from github its throwing below error , Any idea what could be the reason of failing and how i can resolve this issue.

error

$ git clone https://github.com/bpmn-io/bpmn-js.git -b v0.16.2
Cloning into 'bpmn-js'...
fatal: unable to access 'https://github.com/bpmn-io/bpmn-js.git/': Failed to connect to github.com port 443: Timed out
hussain
  • 6,587
  • 18
  • 79
  • 152

1 Answers1

0

That machine you're on probably has a proxy or firewall which is preventing access to Github, or it has a bad internet connection in general.

Git is making a normal HTTPS connection. Debug it like one.

Be sure to do it on the same machine as you're running git commands.

In either case, you'll probably want to talk to your network administrator.

Schwern
  • 153,029
  • 25
  • 195
  • 336
  • I was able to access https://github.com/bpmn-io/bpmn-js.git/ from browser, let me talk to me network administrator – hussain Sep 19 '16 at 18:47