Rewrite any git:// urls to be https:// but, it won't touch sshurls (git@github.com:)
git config --global url."https://github".insteadOf git://githubUse ssh instead of https://
git config --global url."git@github.com:".insteadOf "https://github.com/"
It is possible to remove entries with credentials from command line scripts?
I tried
git config --global --unset name <pattern>with no luck :(