1

我已经像这样创建了我的存储库:

 repo init -u https://android.googlesource.com/platform/manifest -b android-4.0.1_r1

但我怎么能

  • 找出我的仓库还有哪些其他分支
  • 切换到我的仓库的另一个分支

谢谢你。

4

1 回答 1

0
# find out what other branches are there for my repo
git branch -a

# switch to another branch for my repo    
git checkout foo

PS 停止使用 repo,只使用 git。

于 2013-01-08T06:45:30.210 回答