一位同事使用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
启动的功能分支?
答案 0 :(得分:3)
转到每个存储库以检查功能分支,从而设置跟踪分支:
repo forall -p -c git checkout thebranch
-p
选项表示“所有存储库”。
现在你可以repo checkout
:
repo checkout thebranch