gpt4 book ai didi

GIT:仅从 GitHub 克隆特定分支

转载 作者:行者123 更新时间:2023-12-03 23:10:30 25 4
gpt4 key购买 nike

有没有一种潜在的方法可以从 GitHub 克隆不完整的存储库,而只是选择的分支?我发现使用命令可以进行单分支克隆:

git clone git@github/path/to/repository.git --branch my_branch_1 --single-branch



所以想实现这样的事情:

git clone git@github/path/to/repository.git --branch my_branch_1 --branch my_branch_2 --single-branch ??



这意味着只有他们两个。问题是,这样的 repo 在 master 分支中非常庞大,开发人员不需要。他们只需要分支 my_branch_1 my_branch_2 .从这些分支开发人员应该创建他们的开发分支,然后在 GitHub 上将请求 pull 到 大师 .

也许可以通过 git remote add 或类似的东西。但我可能不太熟悉 Git 内部的概念。

最佳答案

似乎没有办法克隆多个分支,但您可以只克隆一个,然后 fetch剩下的像这样:

git clone git@github/path/to/repository.git --branch my_branch_1 --single-branch
git fetch origin my_branch_2:my_branch_2 my_branch_3:my_branch_3

关于GIT:仅从 GitHub 克隆特定分支,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58446026/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com