我已经使用以下命令下载了整个工作树:
repo init -u https://android.googlesource.com/platform/manifest
repo sync -j8
同步成功后,我想将工作树切换到 android 2.3.7。你看我在“repo init”时没有用“-b”参数指定分支。所以我想应该下载所有标签信息,我可以使用以下命令轻松切换到 android 2.3.7:
repo forall -c git checkout android-2.3.7_r1
但它会产生许多错误,例如:
error: pathspec 'android-2.3.7_r1' did not match any file(s) known to git.
那么如何在没有“repo init -b android-2.3.7_r1”和“repo sync”的情况下切换到 android 2.3.7 呢?