tldr/pages/common/gh.md

38 lines
719 B
Markdown
Raw Normal View History

2020-02-17 02:30:39 +00:00
# gh
> Work seamlessly with GitHub.
> Some subcommands such as `gh config` have their own usage documentation.
2020-02-17 02:30:39 +00:00
> More information: <https://cli.github.com/>.
- Clone a GitHub 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 the open issues of the current repository:
2020-02-17 02:30:39 +00:00
`gh issue list`
2020-02-17 02:30:39 +00:00
- View an issue in the default web 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 default web 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 a specific pull request 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`