This affects [email protected]
clones, which caused me an issue with bower
.
The fix in this case is to cause git
to use https://
rather than git://
by running this command in the working directory:
git config url."https://".insteadOf git://
To revert the setting run:
git config --unset url."https://".insteadOf
This can also be done globally using the --global
flag.
This fix was found on stackoverflow