GitHub CLI
1.1、GitHub CLI简介
是什么 ?:a official command-line tool for interacting with github.com
开发语言:golang
官方主页:https://cli.github.com
源码仓库:https://github.com/cli/cli
1.2、通过包管理器安装GitHub CLI
操作系统包管理器安装命令
Windowsscoopscoop install gh
WindowsChocolateychoco install -y gh
macOSHomeBrewbrew install gh
GNU/LinuxHomeBrewbrew install gh
1.3、通过下载预编译好的二进制压缩包安装GitHub CLI

step1、安装依赖

所有时Terminal + Shell
下载时cURL
解压时tar + gzip
运行时
  • glibc ( libc.solibpthread.sold-linux-x86-64.so )

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
1.4、gh命令