How to convert `git:` urls to `http:` urls
Here's an example of rewriting the default protocol for GitHub:
git config --global url.https://github.com/.insteadOf git://github.com/
The exact values depend on the protocol in use. For example, the above command for git over ssh will look like:
git config --global url.https://github.com/.insteadOf [email protected]:
Git documentation for url.<base>.insteadOf
:
git config [--global] url.<base>.insteadOf <other_url>
Any URL that starts with this value will be rewritten to start, instead, with
<base>
. When more than one insteadOf strings match a given URL, the longest match is used.
I don't know how this repo tool uses Git (and if you can configure 'repo' to use http protocol), but you can try to trick it using url.<base>.insteadOf
configuration variable (see git-config and git-fetch manpages).
Have you tried to use core.gitProxy
to pass through firewall, if it is the problme with using git protocol?