How to convert `git:` urls to `http:` urls

前端 未结 4 1645
轻奢々
轻奢々 2020-11-27 08:57

I\'m working behind an http proxy. I\'m trying to clone Android\'s source tree using their \"repo\" tool.

This tool insists on using git:// URLs, even

相关标签:
4条回答
  • 2020-11-27 09:37

    Here's an example of rewriting the default protocol for GitHub:

    git config --global url.https://github.com/.insteadOf git://github.com/
    

    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.

    0 讨论(0)
  • 2020-11-27 09:49

    I had this same problem with recursively getting submodules in a git repository. I'm behind a crazy firewall that doesn't allow outgoing connections on the git port. Some of the submodules of the submodules were coded as git://github.com/blah/blah.git. This killed my recursive population of submodules. The workaround is the following:

    git config --global url."https://<GITUSERNAME>@".insteadOf git://
    

    This replaces git:// with https://<GITUSERNAME>@ in all submodule repository URLs. You need to replace <GITUSERNAME> with your own git username. Also note that the --global is required; just adding this configuration to the base repository directory doesn't work.

    0 讨论(0)
  • 2020-11-27 09:49

    You can verify in ~/.gitconfig if you're overwriting SSH with https://, or vice versa.

    0 讨论(0)
  • 2020-11-27 09:55

    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?

    0 讨论(0)
提交回复
热议问题