### Replace `git://` with `https://` Rewrite any `git://` urls to be `https://` but, it won't touch `ssh`urls (`git@github.com:`) ```sh git config --global url."https://github".insteadOf git://github ``` ### or replace with `ssh` Use `ssh` instead of `https://` ```sh git config --global url."git@github.com:".insteadOf "https://github.com/" ``` --- **sauce:** _https://gist.github.com/grawity/4392747_ & [@hansdg1](https://github.com/hansdg1)