如何浅层克隆git存储库,以便我的克隆仅包含1个历史项,并从特定分支开始?
我知道如何做一个浅表克隆:
git clone --depth 1 https://path/to/myrepo.git
但不能在特定分支上启动克隆。
Answers:
要使用分支栏克隆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
--no-single-branch
不是--no--single--branch
。