repo 初始化命令分析
repo init -u ssh://gerrit/NFT10_676X_Android11_BIRD/platform/manifest.git --repo-url=ssh://gerrit/repo_v28.git --no-repo-verify -b master
# 首先 去--repo-url 指定的git仓库下载repo工具本身
# 其次 去指定仓库下载manifest
-u ssh://gerrit/NFT10_676X_Android11_BIRD/platform/manifest.git
#用于初始化项目的 manifest 文件的 URL
#这本身是一个git仓库地址
--repo-url=ssh://gerrit/repo_v28.git
# 用于下载和更新 repo 工具本身的 Git 仓库的 URL
# 指定和不指定的差异如下
Downloading Repo source from ssh://gerrit/repo_v28.git
Downloading Repo source from https://gerrit.googlesource.com/git-repo
#不指定会跑去默认的google地址下载,国内环境可能无法下载。