repo :从现有的 .repo 目录中检出源代码,无需额外下载
repo : checking out source code from existing .repo directory without additional download
我从其中一个桌面复制了一个 .repo 目录,我想检查完整的源代码。
现在如何在不使用 "repo sync" 命令的情况下检出整个源代码?
我之前使用以下命令下载了代码
repo init -u <URL> -b <x> -m <tag> --repo-url=git://xxx/repo.git
想要避免联网,我觉得无外乎:
repo forall -c git checkout <tag>
看起来 repo sync --local-only
正在为我工作。
我从其中一个桌面复制了一个 .repo 目录,我想检查完整的源代码。
现在如何在不使用 "repo sync" 命令的情况下检出整个源代码?
我之前使用以下命令下载了代码
repo init -u <URL> -b <x> -m <tag> --repo-url=git://xxx/repo.git
想要避免联网,我觉得无外乎:
repo forall -c git checkout <tag>
看起来 repo sync --local-only
正在为我工作。