tldr/pages/common/gh.md

37 lines
612 B
Markdown
Raw Normal View History

2020-02-17 02:30:39 +00:00
# gh
> Work seamlessly with GitHub from the command line.
> More information: <https://cli.github.com/>.
- Clone a repository locally:
2020-02-17 02:30:39 +00:00
`gh repo clone {{owner}}/{{repository}}`
2020-02-17 02:30:39 +00:00
- Create a new issue:
2020-02-17 02:30:39 +00:00
`gh issue create`
2020-02-17 02:30:39 +00:00
- View and filter a repositorys open issues:
2020-02-17 02:30:39 +00:00
`gh issue list`
2020-02-17 02:30:39 +00:00
- View an issue in the browser:
2020-02-17 02:30:39 +00:00
`gh issue view --web {{issue_number}}`
2020-02-17 02:30:39 +00:00
- Create a pull request:
2020-10-13 11:37:01 +01:00
`gh pr create`
2020-10-13 11:37:01 +01:00
- View a pull request in the browser:
2020-02-17 02:30:39 +00:00
`gh pr view --web {{pr_number}}`
2020-02-17 02:30:39 +00:00
- Check out pull requests locally:
2020-02-17 02:30:39 +00:00
`gh pr checkout {{pr_number}}`
2020-02-17 02:30:39 +00:00
- Check the status of a repository's pull requests:
2020-02-17 02:30:39 +00:00
`gh pr status`