有时候需要在服务器下载GitHub上的release资源,这时候我们可以使用wget
或者curl
进行处理,这里拿携程开源的配置中心Apollo为例,下载他的release版本
wget
wget --no-check-certificate --content-disposition https://github.com/ctripcorp/apollo/releases/download/v1.5.1/apollo-adminservice-1.5.1-github.zip
curl
curl -LJO https://github.com/ctripcorp/apollo/releases/download/v1.5.1/apollo-adminservice-1.5.1-github.zip