Loading...
Loading...
GitHub CLI - manage repositories, issues, pull requests, actions, releases, and more from the command line.
npx skill4agent add dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations githubghgh auth statusgh auth logingh auth refreshgh repo clone owner/repogh repo create my-repo --public --source=. --pushgh repo fork owner/repo --clonegh repo view --webgh repo listgh issue listgh issue create --title "Bug: Login fails" --body "Description here"gh issue creategh issue view 123gh issue close 123gh issue reopen 123gh issue comment 123 --body "Working on this"gh issue edit 123 --add-assignee @megh issue edit 123 --add-label "bug,priority:high"gh pr listgh pr create --title "Add feature" --body "Description"gh pr create --fillgh pr view 45gh pr view 45 --webgh pr checkout 45gh pr review 45 --approve
gh pr review 45 --request-changes --body "Please fix X"
gh pr review 45 --comment --body "Looks good but..."gh pr merge 45 --squash
gh pr merge 45 --merge
gh pr merge 45 --rebasegh pr close 45gh pr checks 45gh pr diff 45gh run listgh run view 12345gh run watch 12345gh run view 12345 --loggh run rerun 12345 --failedgh workflow listgh workflow run deploy.ymlgh workflow run deploy.yml -f environment=productiongh workflow disable deploy.yml
gh workflow enable deploy.ymlgh release listgh release create v1.0.0 --title "Version 1.0" --notes "Release notes"gh release create v1.0.0 --generate-notesgh release upload v1.0.0 ./dist/app.zipgh release download v1.0.0gh release delete v1.0.0gh gist create file.txt --publicecho "Hello" | gh gist create -gh gist listgh gist view GIST_IDgh gist edit GIST_IDgh search repos "react hooks" --limit 10gh search issues "bug authentication" --repo owner/repogh search prs "fix memory leak" --state opengh search code "function handleAuth" --repo owner/repogh api repos/owner/repogh api repos/owner/repo/issues -f title="New issue" -f body="Description"gh api graphql -f query='{ viewer { login } }'gh api repos/owner/repo/issues --paginategh label listgh label create "priority:high" --color FF0000 --description "High priority"gh project listgh project view 1gh ssh-key listgh ssh-key add ~/.ssh/id_ed25519.pub --title "My laptop"gh gpg-key listgh gpg-key add key.gpggh secret listgh secret set MY_SECRETgh secret set MY_SECRET < secret.txtgh secret delete MY_SECRETgh variable listgh variable set MY_VAR --body "value"gh extension listgh extension install owner/gh-extensiongh extension browsegh alias set pv 'pr view'gh alias listgh config listgh config set editor vimgh config set browser "open"# Create branch, commit, push, create PR
git checkout -b feature/my-feature
# ... make changes ...
git add . && git commit -m "Add feature"
git push -u origin feature/my-feature
gh pr create --fillgh pr checkout 45
# ... review code ...
gh pr review --approve
gh pr merge --squash --delete-branchgh pr checks
gh run watch