Questions tagged «shallow-clone»

3
git浅克隆(克隆-深度)错过了远程分支
克隆远程存储库后,它不会通过-a选项显示任何远程分支。可能是什么问题呢?如何调试呢?在此片段中,未显示两个远程分支: $ git clone --depth 1 git://git.savannah.gnu.org/pythonwebkit.git $ cd pythonwebkit $ git branch -a * master remotes/origin/HEAD -> origin/master remotes/origin/master $ git --version git version 1.8.3.1 在另一台机器上尝试了相同的命令,效果很好: $ git clone --depth 1 git://git.savannah.gnu.org/pythonwebkit.git Receiving objects: 100% (186886/186886), 818.91 MiB | 3.44 MiB/s, done. $ cd pythonwebkit/ $ git branch -a …

4
如何浅克隆深度为1的特定提交?
是否可以在存储库中浅克隆一个特定的提交,即深度为1?就像是 git clone http://myrepo.git 728a4d --depth 1 获取存储库状态,就像在SHA提交时一样728a4d...? 这样做的目的是避免克隆整个存储库,然后在我们只对特定提交时存储库的状态感兴趣时检查该特定提交。


By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.