如何使用Android repo工具检出现有功能分支

时间:2018-01-29 22:41:10

标签: repo

一位同事使用thebranch创建了功能分支repo start。现在我想查看这个分支并进行处理。我试试这个:

repo init -u git@gitserver:manifest.git -m all.xml
repo sync
repo branches              # Responds "(no branches)"
repo checkout thebranch    # Responds "error: no project has branch thebranch"

如何查看其他人使用repo start启动的功能分支?

1 个答案:

答案 0 :(得分:3)

转到每个存储库以检查功能分支,从而设置跟踪分支:

repo forall -p -c git checkout thebranch

-p选项表示“所有存储库”。

现在你可以repo checkout

repo checkout thebranch