repo 相关
mkdir ~/bin
PATH=~/bin:$PATH
curl https://storage.googleapis.com/git-repo-downloads/repo > ~/bin/repo
chmod a+x ~/bin/repo
可以使用如下国内镜像
mkdir ~/bin
PATH=~/bin:$PATH
curl https://mirrors.tuna.tsinghua.edu.cn/git/git-repo > ~/bin/repo
chmod a+x ~/bin/repo
配置 REPO_URL 指向国内镜像
export REPO_URL='https://mirrors.tuna.tsinghua.edu.cn/git/git-repo'