赞
踩
安装完成
- 如果出错的话,就给PowerShell添加代理
$env:HTTP_PROXY="http://127.0.0.1:7890"
$env:HTTPS_PROXY="http://127.0.0.1:7890"
github.com/settings/tokens 如果你之前没有创建过Token的话,就新建一个Token
按下确定之后,会使用浏览器打开GitHub,同时命令行终端上面会产生一个八位字符 -
将其粘贴到浏览器的输入框中,点击继续 -
之后选择授权即可 -
gh release list -R <username>/<repo>
比如自己要下载Make-md/makemd,就修改代码为
gh release list -R Make-md/makemd
效果如下,是不是整整齐齐的,很养眼? -
gh release list -R Make-md/makemd --limit 100
默认的模板为
gh release download <tag> -D <dest> -R <username>/<repo>
修改后
gh release download 0.8.14 -D E:\Documents\Desktop -R Make-md/makemd
下载中
下载完
gh release download -D E:\Documents\Desktop -R Make-md/makemd
gh release download -D E:\Documents\Desktop\test -R Make-md/makemd -A zip
gh release download -D E:\Documents\Desktop -R Make-md/makemd 0.7.6 --archive=zip
gh release download -p "*" -D E:\Documents\Desktop -R Make-md/makemd
gh release list -R Make-md/makemd | Select-String -Pattern '\d+\.\d+(\.\d+)?' | %{$_.Matches.Value} | ForEach-Object {Write-Host "Downloading version $_..." ; gh release download $_ -D E:\Documents\Desktop\test -R Make-md/makemd -A zip}
img
gh release download -D E:\Documents\Desktop -R Make-md/makemd 0.7.2 --archive=zip
是只存在标签,但却不存在实际的文件 -
$env:HTTP_PROXY="http://127.0.0.1:7890"
$env:HTTPS_PROXY="http://127.0.0.1:7890"
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。