从git repo中克隆单个分支

问题描述 投票:0回答:1

我已经尝试过几次从我的组织提供的git repo克隆单个分支。我尝试了git bash,乌龟,但是每次我尝试克隆单个分支时,它都会开始克隆整个仓库。有什么特别的解决方案吗?

git git-branch git-bash tortoisegit git-clone
1个回答
0
投票

您可以使用此命令解决您的问题。git clone --single-branch --branch <branchname> <remote-repo>

© www.soinside.com 2019 - 2024. All rights reserved.