如何在特定分支上浅层克隆回购?

时间:2014-02-17 16:08:00

标签: git continuous-integration git-branch git-clone shallow-clone

如何浅显克隆git存储库,以便我的克隆只包含1个历史记录项,并在特定分支上启动?

我知道如何做一个浅层克隆:

git clone --depth 1 https://path/to/myrepo.git

但不能在特定分支上启动克隆。

1 个答案:

答案 0 :(得分:101)

使用分支 bar 克隆repo foo.git

git clone --depth 1 https://path/to/repo/foo.git -b bar

请参阅git-clone文档:https://www.kernel.org/pub/software/scm/git/docs/git-clone.html