为什么没有'git clone`克隆所有分支?

时间:2016-06-09 15:01:37

标签: git github

如果我这样做

$ git clone https://github.com/dtu-compute/docker-mongodb
$ cd docker-mongodb
$ git branch
* master

但是如果你看一下the Github branch page,就有两个分支。

问题

为什么我不能使用git clone获得所有分支?

1 个答案:

答案 0 :(得分:8)

git branch默认只显示本地分支;使用git branch -r查看远程分支或git branch -a查看所有分支。 git clone默认情况下只创建一个本地分支master,它会跟踪(默认情况下)远程存储库上的master分支。