git-clone是否具有恢复功能?


Answers:


10

不,克隆无法恢复,如果中断,则需要重新开始。如果您怀疑克隆很可能被打断,请寻找可以使用可恢复的协议下载的git捆绑包。然后,您可以使用它来创建初始克隆,并使用实际的存储库来保持最新。


0

我因互联网连接问题而面临同样的问题。因此,我想出了以下解决方案:在服务器上创建了一个小的php文件,以zip文件格式下载了该软件包:

<?php
$url = "https://codeload.github.com/CocoaPods/Specs/zip/master";
file_put_contents("coco.zip", fopen($url, 'r'));
?>  

<a href="coco.zip">coco.zip</a>

然后使用任何支持简历的下载管理器下载zip文件

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.