mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
43 lines
900 B
Plaintext
43 lines
900 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# gh
|
|
|
|
> Work seamlessly with GitHub.
|
|
> Some subcommands such as `config` have their own usage documentation.
|
|
> More information: <https://cli.github.com/manual/gh>.
|
|
|
|
- Clone a GitHub repository locally:
|
|
|
|
`gh repo clone {{owner}}/{{repository}}`
|
|
|
|
- Create a new issue:
|
|
|
|
`gh issue {{[new|create]}}`
|
|
|
|
- View and filter the open issues of the current repository:
|
|
|
|
`gh issue {{[ls|list]}}`
|
|
|
|
- View an issue in the default web browser:
|
|
|
|
`gh issue view {{[-w|--web]}} {{issue_number|url}}`
|
|
|
|
- Create a pull request:
|
|
|
|
`gh pr {{[new|create]}}`
|
|
|
|
- View a pull request in the default web browser:
|
|
|
|
`gh pr view {{[-w|--web]}} {{pr_number|url|branch}}`
|
|
|
|
- Check out a specific pull request locally:
|
|
|
|
`gh {{[co|pr checkout]}} {{pr_number|url|branch}}`
|
|
|
|
- Check the status of a repository's pull requests:
|
|
|
|
`gh pr status`
|