1

I downloaded the latest symfony2 (2.0.10) and tried to run bin/vendors install but it prints the following:

Installing/Updating symfony Cloning into /Users/i/sf2_proj/vendor/symfony... error: Failed connect to github.com:80; Operation timed out while accessing http://github.com/symfony/symfony.git/info/refs fatal: HTTP request failed

haxpanel
  • 4,402
  • 4
  • 43
  • 71
  • do you have any firewalls that may block internet connection? – meze Feb 12 '12 at 10:41
  • 2
    You're experiencing this problem due to a GitGub DDoS. They wrote about it in their [blog](https://github.com/blog/1036-about-this-week-s-availability). This is also the reason why several projects are failing on [Travis](http://travis-ci.org). – noisebleed Feb 12 '12 at 14:29

2 Answers2

5

try using git:// instead of http:// in your deps file

ftassi
  • 335
  • 2
  • 9
3

Changing http:// to https:// also works

huzi
  • 131
  • 1
  • 8