关于github:我怎样才能获得所有分支的git存储库的完整内容?

How can I get full content of a git repository with all branches?

本问题已经有最佳答案,请猛点这里访问。

我在这里读到这段文字:

If you want to get a copy of an existing Git repository – for example, a project you’d like to contribute to – the command you need is git clone.

我需要得到完整的存储库(包括所有分支)。

但是当我使用命令git clone 时,我只使用一个分支获得克隆。我是通过git branch命令看到的。如果我使用git clone -b ,那么我只得到那个分支(我再次通过git branch命令看到它)。

如何获取所有分支的Git存储库的完整内容?我克隆的存储库位于BitBucket网站上。


一个普通的git clone ...,后面跟着一个git fetch --all,就可以做到这一点。