Я хочу клонировать только релиз "Caffe_v1.1.4" из репозитория GIT https://github.com/intel/caffe.Не могли бы вы сообщить мне сценарий, который будет использоваться для копирования содержимого в локальную папку.
Под "клоном", если вы имеете в виду "git clone" хранилище,
git clone -b 1.1.4 --single-branch https://github.com/intel/caffe.git
Вы также можете добавить параметр --depth=1, чтобы минимизировать размер извлекаемых данных.
--depth=1
Если вы имеете в виду «скачать» исходный код,
curl -LOk https://github.com/intel/caffe/archive/1.1.4.zip unzip 1.1.4.zip -d foo
Windows open https://github.com/intel/caffe/archive/1.1.4.tar.gz в вашем браузере
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 должно работать
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