多仓库工具 Repo

前言

有个小任务,拉取 Chromium OSopen in new window 的代码:

cd ${SOURCE_REPO}
repo init -u https://chromium.googlesource.com/chromiumos/manifest.git

# Optional: Make any changes to .repo/local_manifests/local_manifest.xml before syncing
repo sync

其使用到了 repoopen in new window 工具。

安装

# 进入用户目录
cd /usr/bin
# 从清华源下载 repo
sudo curl https://mirrors.tuna.tsinghua.edu.cn/git/git-repo -o repo
# 赋予执行权限
sudo chmod +x repo

# 校验
repo --version