github
Installation
SKILL.md
gh
Use gh to interact with GitHub.
Common Commands
Issues
- List issues:
gh issue list - View issue:
gh issue view <number> - Create issue:
gh issue create --title "Title" --body "Description" - Close issue:
gh issue close <number>
Pull Requests
- List PRs:
gh pr list - View PR:
gh pr view <number> - Create PR:
gh pr create --title "Title" --body "Description" - Checkout PR:
gh pr checkout <number> - Merge PR:
gh pr merge <number> --merge - Review PR:
gh pr review <number> --approve