Exploring the New GitHub CLI

栏目: IT技术 · 发布时间: 4年前

内容简介:GitHubIt allows us to do GitHub work directly from the command line. This is more than just

GitHub recently announced their new CLI offering. cli.github.com

Table of Contents

  • Installing the GitHub CLI
  • What can the GitHub CLI do?
  • What is the difference between gh and hub?
  • Working on Issues with the GitHub CLI
  • Show the Status of Issues
  • Working on Pull Requests with the GitHub CLI
  • Checkout a Pull Request
  • Creating a Pull Request
  • List All Pull Requests
  • Show the Status of Pull Requests
  • View a Single Pull Request

It allows us to do GitHub work directly from the command line. This is more than just push or pull and is not tied directly to the Git command line tools. It is also not the same as GitHub’s hub CLI tool .

GitHub CLI Beta

Installing the GitHub CLI

There are installers for Windows, Mac, and Linux. If you are on Mac, you can use Homebrew to install using:

brew install github/gh/gh

What can the GitHub CLI do?

The GitHub CLI is focused on our workflows as team developers. Here’s a quick list of GitHub CLI features that we can do from the command line:

  • Issues:
    • Create an issue
    • List all issues (and filter)
    • See status of an issue (and filter)
    • View a single issue
  • Pull Requests:
    • Checkout a PR
    • Create a PR
    • List all PRs (and filter)
    • See status of a PR (and filter)
    • View a single PR

What is the difference between gh and hub?

gh and hub will both continue to work. From the GitHub CLI README :

"For many years, hub was the unofficial GitHub CLI tool. gh is a new project for us to explore what an official GitHub CLI tool can look like with a fundamentally different design. While both tools bring GitHub to the terminal, hub behaves as a proxy to git and gh is a standalone tool."

  • GitHub CLI Features include Issues and Pull Requests
  • hub Features include cloning/creating repos

Working on Issues with the GitHub CLI

Showing All Issues

gh issue list [flags]

# flags can be:
# -a, --assignee string   Filter by assignee
# -l, --label strings     Filter by label
# -L, --limit int         Maximum number of issues to fetch (default 30)
# -s, --state string      Filter by state: {open|closed|all}

Exploring the New GitHub CLI

Creating an Issue

gh issue create [flags]

# flags can be:
# -b, --body string    Supply a body. Will prompt for one otherwise.
# -t, --title string   Supply a title. Will prompt for one otherwise.
# -w, --web            Open the browser to create an issue

Show the Status of Issues

gh issue status [flags]

# flags can be:
# --help                  Show help for command
# -R, --repo OWNER/REPO   Select another repository using the OWNER/REPO format

View a Single Issue

gh issue view {<number> | <url> | <branch>} [flags]

# example
# gh issue view 8

# flags can be:
# -p, --preview   Display preview of issue content

Working on Pull Requests with the GitHub CLI

Checkout a Pull Request

gh pr checkout {<number> | <url> | <branch>} [flags]

# example
# gh pr checkout 12

Creating a Pull Request

gh pr create

# flags can be:
# -B, --base string    The branch into which you want your code merged
# -b, --body string    Supply a body. Will prompt for one otherwise.
# -d, --draft          Mark pull request as a draft
# -t, --title string   Supply a title. Will prompt for one otherwise.
# -w, --web            Open the web browser to create a pull request

List All Pull Requests

gh pr list [flags]

# flags can be:
# -a, --assignee string   Filter by assignee
# -B, --base string       Filter by base branch
# -l, --label strings     Filter by label
# -L, --limit int         Maximum number of items to fetch (default 30)
# -s, --state string      Filter by state: {open|closed|merged|all} (default "open")

Exploring the New GitHub CLI

Show the Status of Pull Requests

gh pr status [flags]

View a Single Pull Request

gh pr view [{<number> | <url> | <branch>}] [flags]

# example
# gh pr view 14

The GitHub CLI should help those out who work on repos with a lot of issues and PRs.

The GitHub CLI is still in early stages so give them feedback if you want to help out: https://forms.gle/umxd3h31c7aMQFKG7

Like this article? Follow @chrisoncode on Twitter


以上所述就是小编给大家介绍的《Exploring the New GitHub CLI》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

删除

删除

[英] 维克托•迈尔-舍恩伯格(Viktor Mayer-Schönberger)著 / 袁杰 译 / 浙江人民出版社 / 2013-1 / 49.90元

《删除》讲述了遗忘的美德,为读者展现了大数据时代的取舍之道。 《删除》从大数据时代信息取舍的目的和方法分别诠释了“被遗忘的权利”。维克托首先回溯了人类追寻记忆的过程,之后提出数字技术与全球网络正在瓦解我们天生的遗忘能力。对此,他考察了促进遗忘终止4大驱动力——数字化,廉价的存储器,易于提取,全球性访问。之后,他提出了当前数字化记忆的两大威胁——信息权力与时间,并给出了应对威胁的6大对策——数......一起来看看 《删除》 这本书的介绍吧!

Base64 编码/解码
Base64 编码/解码

Base64 编码/解码

URL 编码/解码
URL 编码/解码

URL 编码/解码