2012-12-20 69 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。