#1 I followed some articles on how to access github or bitbucket with two different ssh keys, and it works fine when I do a git clone ...
. So, I can do a git clone git://git@github.com/...
and git clone git://git@mycompany-bitbucket.org/...
without any problem.
#2 I also followed some article on how to use private repository
However, if I combine the two articles (#1 and #2), go get ...
will always use the https://api.bitbucket.org/2.0/repositories/...
. So, is there a way to force go get ...
to use something like https://api.mycompany-bitbucket.org/2.0/repositories/
?