tldr/pages/common/gh.md

37 lines
612 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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