Knowledge Base

308 copy-ready commands with fill-in variables, plus step-by-step installation guides.

Installation Guides 11

Categories

Installation Guides (11)

Tags

8 results

GitHub CLI

Create a Pull Request

gh pr create --base {{base_branch}} --title "{{title}}" --body "{{body}}"
#gh #github
3 views 0 copies
GitHub CLI

List Open Pull Requests

gh pr list --state {{state}} --limit {{limit}}
#gh #github
4 views 0 copies
GitHub CLI

View a Pull Request as JSON

gh pr view {{pr_number}} --json title,body,state,additions,deletions,changedFile...
#gh #github
3 views 0 copies
GitHub CLI

Check Out a Pull Request Locally

gh pr checkout {{pr_number}}
#gh #github
3 views 0 copies
GitHub CLI

Create a GitHub Issue

gh issue create --title "{{title}}" --body "{{body}}" --label "{{labels}}"
#gh #github
3 views 0 copies
GitHub CLI

Clone a Repository

gh repo clone {{org}}/{{repo}} {{local_dir}}
#gh #github
3 views 0 copies
GitHub CLI

Trigger a GitHub Actions Workflow

gh workflow run {{workflow_file}} --ref {{branch}}
#gh #github
3 views 0 copies
GitHub CLI

Create a GitHub Release

gh release create {{tag}} --title "{{release_title}}" --notes "{{notes}}" --targ...
#gh #github
3 views 0 copies