I am trying to install a package into Atom ide. In the package dependancies there is the node-simple-plist
library which git is trying to clone using the git protocol: git://github.com/monsterkodi/node-simple-plist.git
instead of the http protocol.
The port used by the git protocol is blocked by my corporation firewall.
I know there is a way to config git to always use http protocol instead of git protocol to clone libraries, but I can't make it works.
git config --global url."https://".insteadOf git://
I have done that, but git continue to use the git protocol.
What could be wrong then?
Note that I am on Windows 8 OS.
Edit: for those who have the same problem ie: npm not using .gitconfig you can try this workaround:
git config --global url."https://github.com/".insteadOf git@github.com:
git config --global url."https://".insteadOf git://