Rewrite any git://
urls to be https://
but, it won't touch ssh
urls ([email protected]:
)
git config --global url."https://github".insteadOf git://github
Use ssh
instead of https://
git config --global url."[email protected]:".insteadOf "https://github.com/"
@jasong-au Any time
git
is called, it'll check the~/.gitconfig
file for matches based oninsteadOf
. This includes ifgo install
is using git under the hood. Any timessh
is called, it'll check~/.ssh/config
for matching host definitions. This includes ifgit
is using ssh under the hood.So you can debug a
~/.ssh/config
file usingssh
, such asssh github
orssh github.com
and ensure it uses the hostname, username, and port defined in the config file.You can debug a
~/.gitconfig
usinggit
.Do something like this:
Just make sure that whatever you put in your
insteadOf =
clause properly matches a URL for a git repo thatgo install
is trying to access. And keep in mind that it's a find/replace matching from the start of the string, so you can swap any part of the start of the URL you want, including the entire URL. In my config I swaphttps://ourserver.organziation.example.com
matching based oninsteadOf = https://github.com/organization/
because we moved away from github and now have our own internal git server. By setting up the url mapping I didn't have to go through and update the URL for every repo already cloned on my workstation.