Hinweis: Der beschriebene Anwendungsfall bezieht sich zwar auf die Verwendung von Submodulen innerhalb eines Projekts, aber das Gleiche gilt für ein normales git clone
eines Repositorys über HTTP.
Ich habe ein Projekt unter Git-Kontrolle. Ich würde gerne ein Submodul hinzufügen:
git submodule add http://github.com/jscruggs/metric_fu.git vendor/plugins/metric_fu
Aber ich bekomme
...
got 1b0313f016d98e556396c91d08127c59722762d0
got 4c42d44a9221209293e5f3eb7e662a1571b09421
got b0d6414e3ca5c2fb4b95b7712c7edbf7d2becac7
error: Unable to find abc07fcf79aebed56497e3894c6c3c06046f913a under http://github.com/jscruggs/metri...
Cannot obtain needed commit abc07fcf79aebed56497e3894c6c3c06046f913a
while processing commit ee576543b3a0820cc966cc10cc41e6ffb3415658.
fatal: Fetch failed.
Clone of 'http://github.com/jscruggs/metric_fu.git' into submodule path 'vendor/plugins/metric_fu'
Ich habe meine HTTP_PROXY eingerichtet:
c:\project> echo %HTTP_PROXY%
http://proxy.mycompany:80
Ich habe sogar eine globale Git-Einstellung für den http-Proxy:
c:\project> git config --get http.proxy
http://proxy.mycompany:80
Hat jemand erreicht, dass HTTP-Abrufe durch einen Proxy konsistent funktionieren? Was wirklich seltsam ist, ist, dass ein paar Projekte auf GitHub gut funktionieren ( awesome_nested_set
zum Beispiel), aber andere scheitern immer wieder ( Schienen zum Beispiel).