
gh-issue
List of commands for gh-issue:
-
gh-issue:tldr:02308 gh-issue: Display the status of issues relevant to the user, in a specific repository.$ gh issue status --repo ${owner}/${repository}try on your machineexplain this command
-
gh-issue:tldr:5f01a gh-issue: Display a specific issue.$ gh issue view ${issue_number}try on your machineexplain this command
-
gh-issue:tldr:63c7e gh-issue: Reopen a specific issue.$ gh issue reopen ${issue_number}try on your machineexplain this command
-
gh-issue:tldr:893ea gh-issue: List the last 10 issues with the `bug` label.$ gh issue list --limit ${10} --label "${bug}"try on your machineexplain this command
-
gh-issue:tldr:f97f0 gh-issue: List closed issues made by a specific user.$ gh issue list --state closed --author ${username}try on your machineexplain this command