内容简介: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 .
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}
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")
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》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
黑客攻防技术宝典(第2版)
[英] Dafydd Stuttard、[英] Marcus Pinto / 石华耀、傅志红 / 人民邮电出版社 / 2012-6-26 / 99.00元
内容简介: Web应用无处不在,安全隐患如影随形。承载着丰富功能与用途的Web应用程序中布满了各种漏洞,攻击者能够利用这些漏洞盗取用户资料,实施诈骗,破坏其他系统等。近年来,一些公司的网络系统频频遭受攻击,导致用户信息泄露,造成不良影响。因此,如何确保Web应用程序的安全,已成为摆在人们眼前亟待解决的问题。 本书是Web安全领域专家的经验结晶,系统阐述了如何针对Web应用程序展开攻击与......一起来看看 《黑客攻防技术宝典(第2版)》 这本书的介绍吧!