git-repo如何在一个google repo中列出所有分支?

时间:2014-09-30 18:10:08

标签: git-repo

有没有办法在google repo列出所有分支?

我发现很难理解repoHere仅提供非常少的命令,这些命令不提供列表分支机制。

2 个答案:

答案 0 :(得分:1)

@ Patrick Tsai git --git-dir .repo/manifests.git/ branch -a

答案 1 :(得分:0)

git branch不是您要找的?

列出所有分支,例如:

branch_name_1
branch_name_2
*master

注意:分支名称前面的*表示当前分支。

要切换分支,请使用:git checkout branch_name_#