美文网首页
中科大镜像源aosp下载源码过程

中科大镜像源aosp下载源码过程

作者: 水银瓶 | 来源:发表于2017-11-25 11:35 被阅读0次

    1) 建立目录

    mkdir ~/bin

    PATH=~/bin:$PATH

    2) 下载repo

    curl https://storage.googleapis.com/git-repo-downloads/repo > ~/bin/repo

    chmod a+x ~/bin/repo

    3) 修改repo中的源:REPO_URL

    # REPO_URL = 'https://gerrit.googlesource.com/git-repo'

    REPO_URL = 'https://gerrit-googlesource.lug.ustc.edu.cn/git-repo'

    4) 建立源码目录

    mkdir source_directory     //源码保存目录

    cd source_directory          //源码保存目录

    5) 初始化仓库

    repo init -u https://aosp.tuna.tsinghua.edu.cn/platform/manifest              //下载全部

    //下载特定分支

    repo init -u https://aosp.tuna.tsinghua.edu.cn/platform/manifest -b android-4.0.1_r1 //下载特定分支

    6) 同步源码

    repo sync

    相关文章

      网友评论

          本文标题:中科大镜像源aosp下载源码过程

          本文链接:https://www.haomeiwen.com/subject/hstcbxtx.html