Rewrite any git://
urls to be https://
but, it won't touch ssh
urls (git@github.com:
)
git config --global url."https://github".insteadOf git://github
Use ssh
instead of https://
git config --global url."git@github.com:".insteadOf "https://github.com/"
Thanks for the info