Internal error: github.com[0: 192.30.252.130]: errno=No error fatal: unable to connect a socket (No error)

StackOverflow https://stackoverflow.com/questions/19204333

  •  30-06-2022
  •  | 
  •  

문제

I'm pretty much a start up (noob) in this whole coding thing. But I have my eclipse running with the aptana studio plugin. I open a new web project, and click on the "HTML5 Boilerplate" Option, and upon creating the project, get this error message: Internal error:

github.com[0: 192.30.252.130]: errno=No error fatal: unable to connect a socket (No error)

when I click on the eclipse "Problem Occured" prompt on "Details" I am not sure of how to fix this problem. I already installed the git plugins on eclipse and everything, if that was a possible solution.

도움이 되었습니까?

해결책 2

It depends on the GitHub url for the HTML5 boilerplate repo.

But if you are behind a firewall, chances are that url is an ssh one, and ssh is blocked.
If you have not control over said url, and cannot change it to an https one, you still can attempts a manual download and installation, as in this answer.

다른 팁

This solved my issue.... Bypass git using git:// addresses, force them to use https://

git config --global url."https://".insteadOf git://

To revert the settings back to git port, use below command

git config --global --unset url."https://".insteadOf

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top