2012-12-20 52 views
1

我已经创建了我的仓库这样的后:如何切换分支我做“回购初始化”

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

但我怎么能

  • 找出其他分支机构在那里为我的回购
  • 切换到另一个分支我的回购

谢谢。

回答

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停止使用回购,只使用git。