Forrest logo
back to context overview

gh-issue-create

List of commands for gh-issue-create:

  • gh-issue-create:tldr:06993 gh-issue-create: Create a new issue with a title, body and assign it to the current user.
    $ gh issue create --title "${title}" --body "${body}" --assignee "${@me}"
    try on your machine
    explain this command
  • gh-issue-create:tldr:0a61e gh-issue-create: Create a new issue in the default web browser.
    $ gh issue create --web
    try on your machine
    explain this command
  • gh-issue-create:tldr:161e6 gh-issue-create: Display the help.
    $ gh issue create --help
    try on your machine
    explain this command
  • gh-issue-create:tldr:22a73 gh-issue-create: Create a new issue interactively and assign it to the specified users.
    $ gh issue create --assignee ${user1,user2,---}
    try on your machine
    explain this command
  • gh-issue-create:tldr:3870e gh-issue-create: Create a new issue interactively, reading the body text from a file.
    $ gh issue create --body-file ${filename}
    try on your machine
    explain this command
  • gh-issue-create:tldr:6885f gh-issue-create: Create a new issue with the `bug` label interactively.
    $ gh issue create --label "${bug}"
    try on your machine
    explain this command
back to context overview