是什么 ? | : | a official command-line tool for interacting with github.com |
开发语言 | : | golang |
官方主页 | : | https://cli.github.com |
源码仓库 | : | https://github.com/cli/cli |
操作系统 | 包管理器 | 安装命令 |
---|---|---|
Windows | scoop | scoop install gh |
Windows | Chocolatey | choco install -y gh |
macOS | HomeBrew | brew install gh |
GNU/Linux | HomeBrew | brew install gh |
step1、安装依赖
所有时 | Terminal + Shell |
下载时 | cURL |
解压时 | tar + gzip |
运行时 |
|
step2、使用curl命令下载编译好的二进制文件 ()
curl -LO https://github.com/cli/cli/releases/download/v1.5.0/gh_1.5.0_macOS_amd64.tar.gz
step3、使用tar解压压缩包
tar vxf gh_1.5.0_macOS_amd64.tar.gz
step4、查看gh_1.5.0_macOS_amd64
目录中的内容
step5、将gh_1.5.0_macOS_amd64/bin
目录加入PATH
环境变量
export PATH=$PATH:~/gh_1.5.0_macOS_amd64/bin