我想从GitHub下载PHPMailer。 URL如下:
https://github.com/PHPMailer/PHPMailer
我在安装了git
的Linux机器上。我想下载最新版本的PHPMailer
而不下载整个存储库。
这可能吗?为实现此目的,我要发出什么git
命令?
答案 0 :(得分:1)
使用--single-branch的Git clone将只获得所需的分支。 使用--depth = N的Git克隆将只获得N个最近的提交( - devth = 1将仅克隆repo HEAD)。
Ofc,你可以把它们结合起来。但是使用--depth = N,您将只能看到最近的历史记录(最近N次提交)。
答案 1 :(得分:0)
我能够通过以下Linux命令实现我想要的目标:
wget https://github.com/PHPMailer/PHPMailer/archive/master.zip