我最近尝试下载android的最新源码,确总是提示:remote end hung up unexceptedly.哪位大侠可否告知如何解决?

解决方案 »

  1.   

    没问题啊,我每天都要同步Android代码的,我在北京。
      

  2.   

    姑娘的攻击是 very 犀利,支持了:)
      

  3.   

    先ping一下网站看能不能通?
    局域网另外的机试一下看行不行。。
      

  4.   

    藐视这两天source.android.com打不开
      

  5.   

    http://androidappdocs-staging.appspot.com/index.html
      

  6.   

    有些局域网是不行的。
    可能有防火墙隔着就无法访问。而且源码都在国外服务器上,速度超过50KB/s就不错了。
    做好心理准备,要下一周的。
      

  7.   

    这个容易办;写个脚本如下:#!/bin/bashrepo init -u git://git.android-x86.org/manifest.git -b eclair-x86
    while [ $? = 1 ]; do
            date 
            echo "======init error======"
            sleep 2
            repo init -u git://git.android-x86.org/manifest.git -b eclair-x86
    doneecho "======start repo sync======"
    repo sync
    while [ $? = 1 ]; do
            date 
            echo "======sync failed, re-sync again======"
            sleep 3
            repo sync
    done
    如果出错就会重新repo sync;直接repo sync没出错,也就是工程同步完了