1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-24 11:15:26 +02:00

gh: add page (#3854)

This commit is contained in:
Antonio Bustos 2020-02-17 03:30:39 +01:00 committed by GitHub
parent b00ed9364b
commit d009c909d2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

32
pages/common/gh.md Normal file
View file

@ -0,0 +1,32 @@
# gh
> Work seamlessly with GitHub from the command line.
> More information: <https://cli.github.com/>.
- Create a pull request:
`gh pr create`
- View a pull request in the browser:
`gh pr view {{pr_number}}`
- Check out pull requests locally:
`gh pr checkout {{pr_number}}`
- Check the status of your pull requests:
`gh pr status`
- Create a new issue:
`gh issue create`
- View and filter repository’s open issues:
`gh issue list`
- View an issue in the browser:
`gh issue view {{issue_number}}`