gpt4 book ai didi

git - 如何获取所有远程分支?

转载 作者:太空狗 更新时间:2023-10-29 13:05:49 26 4
gpt4 key购买 nike

我的一个存储库以某种方式拒绝获取新分支:

C:\temp>git fetch --all
Fetching origin

C:\temp>git branch -a
* develop
remotes/origin/develop

C:\temp>git ls-remote --heads origin
d130c97c1ccbe9ab35cd6e268c760781e37e3628 refs/heads/2.1.0.x
...
92685125df152fe053a2818de0c4d2ce8655c6b8 refs/heads/2.2.5.x
1e2eec16c7d63c84d6b53d0a221d22109b4de2a8 refs/heads/develop
f6447d5315fe777803b283bee7dac1dbdba92536 refs/heads/feature/0001089__icons_are_gone_-_move_inclusion_to_RC_files
e2cf0112b7e7fc18eb3467c7c42657208147efb2 refs/heads/feature/0001102__Debug_time_fix_exception_EIdSocketError_10060
6b2c89c6a39b3ce26cf42c5e8e5e0dd12c88abac refs/heads/feature/0001103__Research_cause_of_Internal_error_Stack_not_balanced
...
9f724b76b7c3533996fa03189e18a2f61fa5cf4f refs/heads/master
c233696172eb05522d1bb6705a3ea8cd730a762d refs/heads/origin/master
1db38f4fab2c41ee1931c9c6165aa6087556210a refs/heads/release
c233696172eb05522d1bb6705a3ea8cd730a762d refs/heads/trunk

如何强制 git 获取所有这些远程分支?

我在 git 版本 2.8.2.windows.1

最佳答案

检查你 git config --get remote.origin.fetch refspec .

如果 refspec 是

,它只会获取 所有 分支
+refs/heads/*:refs/remotes/origin/*

如果 refspec 是:

+refs/heads/develop:refs/remotes/origin/develop

然后 fetch 只会带回 develop 分支。
这是典型的 git clone --branch develop --single-branch .

关于git - 如何获取所有远程分支?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39957760/

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