我做'repo init'之后如何切换分支

时间:2012-12-20 22:58:34

标签: git repository

我已经创建了我的存储库:

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

但我怎么能

  • 找出我的回购中有哪些分支
  • 切换到我的仓库的另一个分支

谢谢。

1 个答案:

答案 0 :(得分: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。