美文网首页
linux 安装repo

linux 安装repo

作者: gcp | 来源:发表于2023-05-31 16:35 被阅读0次

    1、根目录下创建.bin文件夹

    mkdir ~/.bin

    2、配置为临时环境变量(也可配置为永久的)

    PATH=~/.bin:$PATH

    3、下载repo

    git clone https://gerrit-googlesource.lug.ustc.edu.cn/git-repo

    4、将git-repo中的repo文件复制到 1 创建的.bin目录中

    cd git-repo

    cp repo ~/.bin/

    5、修改权限

    chmod a+x ~/.bin/repo

    6、创建同步源码的工作目录

    mkdir android_source

    7、在工作目录中创建.repo目录

    cd android_source

    mkdir .repo

    8、将下载的git-repo拷贝到.repo下,并改名为 repo

    9、可以重新初始化了

    repo init -u xxxxxxxxx -b xxxx

    10、开始同步

    repo sync

    相关文章

      网友评论

          本文标题:linux 安装repo

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