如何浅显克隆git存储库,以便我的克隆只包含1个历史记录项,并在特定分支上启动?
我知道如何做一个浅层克隆:
git clone --depth 1 https://path/to/myrepo.git
但不能在特定分支上启动克隆。
答案 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