
github
List of commands for github:
-
github:issue:filter View and filter the open issues of the current repository.$ gh issue listtry on your machineexplain this command
-
github:issue:show:in-browser View an issue in the default web browser.$ gh issue view --web ${issue_number}try on your machineexplain this command
-
github:pull-request:checkout Check out a specific pull request locally.$ gh pr checkout ${pr_number}try on your machineexplain this command
-
github:pull-request:create Create a pull request.$ gh pr createtry on your machineexplain this command
-
github:pull-request:show:in-browser View a pull request in the default web browser.$ gh pr view --web ${pr_number}try on your machineexplain this command
-
github:pull-request:status Check the status of a repository's pull requests.$ gh pr statustry on your machineexplain this command
-
github:repository:clone Clone a GitHub repository locally.$ gh repo clone ${owner}/${repository}try on your machineexplain this command