2014-04-25 11 views
26

Su scaricando il branch master da AOSP ottengo il seguente errore:Cosa fare su errore clone.bundle ricciolo su AOSP repo sync

curl: (22) The requested URL returned error: 404 Not Found 
Server does not provide clone.bundle; ignoring. 

Perché questo errore arrivando?

Log:

* [new tag]   android-cts-4.4_r1 -> android-cts-4.4_r1 
* [new tag]   android-sdk-4.4.2_r1 -> android-sdk-4.4.2_r1 
Fetching projects: 7% (32/448) Fetching project platform/packages/apps/Launcher3 
    % Total % Received % Xferd Average Speed Time Time  Time Current 
           Dload Upload Total Spent Left Speed 
    0  0 0  0 0  0  0  0 --:--:-- --:--:-- --:--:--  0 
curl: (22) The requested URL returned error: 404 Not Found 
Server does not provide clone.bundle; ignoring. 
94 88.8M 94 83.9M 0  0 294k  0 0:05:08 0:04:51 0:00:17 357kremote:  Sending approximately 108.84 MiB ... 
remote: Counting objects: 9, done 
remote: Finding sources: 100% (9/9) 
94 88.8M 94 84.1M 0  0 294k  0 0:05:08 0:04:52 0:00:16 303kReceiving  objects: 0% (1/44323) 

risposta

39

Repo tenta di scaricare un file pacchetto preconfezionato per l'avvio ogni git prima di scaricare i dati più recenti tramite protocollo HTTP di Git. Quest'ultimo è più costoso sul lato server e si traduce in prestazioni peggiori, quindi il file bundle consente al download di tagliare alcuni angoli. Se un file bundle non è disponibile (come in questo caso), Repo lo ignorerà e procederà comunque. In altre parole, non prestare attenzione a questo.

+0

Come possiamo ignorare questo passo? Mi bastano 5 minuti per non avere clone.bundle. – DeanSinaean

Problemi correlati