从git仓库仅克隆特定版本

时间:2019-05-16 07:24:33

标签: git github tags release git-clone

我只想从GIT存储库https://github.com/intel/caffe中克隆发行版“ Caffe_v1.1.4”。您能否让我知道用于将内容复制到本地文件夹的脚本。

2 个答案:

答案 0 :(得分:0)

Windows在浏览器中打开https://github.com/intel/caffe/archive/1.1.4.tar.gz

对于Linux操作系统curl -s https://github.com/intel/caffe/archive/1.1.4.tar.gz应该可以工作

更新

Windows Powershell

$AllProtocols = [System.Net.SecurityProtocolType]'Ssl3,Tls,Tls11,Tls12' //for https support 
[System.Net.ServicePointManager]::SecurityProtocol = $AllProtocols
Invoke-WebRequest http://github.com/intel/caffe/archive/1.1.4.zip -OutFile yourpath\caffe.zip

答案 1 :(得分:0)

通过“克隆”,如果您的意思是“ git clone”存储库,

 git clone -b 1.1.4 --single-branch https://github.com/intel/caffe.git

您还可以添加选项--depth=1,以最小化获取的数据的大小。

如果您要“下载”源代码,

curl -LOk https://github.com/intel/caffe/archive/1.1.4.zip
unzip 1.1.4.zip -d foo