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 though "http://" URLs also work. This results in me not being able to download the source.
Is it possible to force git to always use http URLs?
Thanks.
Edit: my http_proxy is configured correctly. For example, this works:
git clone http://android.git.kernel.org/platform/manifest.git
But this doesn't (errno=Connection timed out):
git clone git://android.git.kernel.org/platform/manifest.git
So this answer does not really help me.