Getting modules from Github
I'm behind a firewall so:
php index.php fuel/installer/add_git_submodule git://github.com/daylightstudio/FUEL-CMS-Blog-Module.git blog
Wasn't working for me. You get the following error:
Cloning into 'fuel/modules/blog'...
fatal: unable to connect to github.com:
github.com[0: 192.30.252.131]: errno=No error
Clone of 'git://github.com/daylightstudio/FUEL-CMS-Blog-Module.git' into submodu
le path 'fuel/modules/blog' failed
I found out, if you run the following, git will then work as expected.
git config --global url."https://".insteadOf git://
Just passing on this information for others that may have need of it.
Comments