树枝确实存在,但你看不到它们
尝试使用这个:
git branch -a
您现在将看到远程分支的列表,origin
例如
输出:
remotes/origin/tk_removes_call_centers
remotes/origin/tk_warm_transfer_fix
remotes/origin/update_README
然后你可以
git checkout [any_individual_branch_name]
您还可以获得git branch -v --all
包含最新提交信息的相同列表,即
git branch -v --all
输出:
remotes/origin/tk_removes_call_centers 1478b14 re-adding call feedback workers
remotes/origin/tk_warm_transfer_fix 94720c5 handling blank auto policy
remotes/origin/update_README a769b82 Update README
git branch -v
(不带--all
)仅显示您处理过的分支。使用时,--all
您会看到所有跟踪分支origin/
有关的: