本文介绍了将浅层克隆转换为完整克隆的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如此问题的后续处理:如果我有一个浅层克隆,如何获取所有较旧的提交以使其成为一个完整的克隆? 您可以运行 git fetch --depth = 1000000
(假定版本库的提交少于100万次)。
Follow-up of this so-question: if I have a shallow clone, how to fetch all older commits to make it a full clone?
解决方案
You can run git fetch --depth=1000000
(assuming the repository has less than one million commits).
这篇关于将浅层克隆转换为完整克隆的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!