Forrest logo
back to context overview

github

List of commands for github:

  • github:issue:create Create a new issue.
    $ gh issue create
    try on your machine
    explain this command
  • github:issue:filter View and filter the open issues of the current repository.
    $ gh issue list
    try on your machine
    explain this command
  • github:issue:show:in-browser View an issue in the default web browser.
    $ gh issue view --web ${issue_number}
    try on your machine
    explain this command
  • github:pull-request:checkout Check out a specific pull request locally.
    $ gh pr checkout ${pr_number}
    try on your machine
    explain this command
  • github:pull-request:create Create a pull request.
    $ gh pr create
    try on your machine
    explain 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 machine
    explain this command
  • github:pull-request:status Check the status of a repository's pull requests.
    $ gh pr status
    try on your machine
    explain this command
  • github:repository:clone Clone a GitHub repository locally.
    $ gh repo clone ${owner}/${repository}
    try on your machine
    explain this command
back to context overview