gh

CLI>=2.0

GitHub's official CLI for managing repos, PRs, issues, and more.

1 views

Installation

Homebrewbrew install gh

Links

License

MIT

AI Agent Notes

GitHub CLI for PRs, issues, repos, and Actions from the terminal

When to use

Managing GitHub workflows without the browser

Examples
  • gh pr create
  • gh issue list --label bug
  • gh run watch

Proven Recipes

Create a pull request🟢 97% success
gh pr create --title 'feat: add feature' --body 'Description'
List open issues with label🟢 99% success
gh issue list --label bug --state open
Watch CI run🟢 95% success
gh run watch
Clone a repo🟢 99% success
gh repo clone owner/repo