Error installing gulp

2

I'm installing gulp on my Windows 7 with the command gulp . But it's giving me the following error:

[11:21:03] Error in plugin 'gulp-bower'
Message:
    Failed to execute "git ls-remote --tags --heads git://github.com/thomaspark/
bootswatch.git", exit code of #128
fatal: unable to connect to github.com:
github.com[0: 192.30.252.130]: errno=No error

NOTE: I have already created the system environment variable pointing to the node installation.

    
asked by anonymous 28.07.2015 / 16:30

1 answer

2

Hello! I've had this problem once, it could be the firewall. I solved the following command:

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

It overrides the clone protocol. Hope it helps!

    
28.07.2015 / 16:33