Move pages under tldr, lint run.sh, update docs

This commit is contained in:
2024-02-21 13:58:43 +02:00
parent 3d653cc7e6
commit 2c475fa62d
4806 changed files with 36 additions and 35 deletions

37
tldr/gh-issue Normal file
View File

@@ -0,0 +1,37 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# gh issue
> Manage GitHub issues.
> More information: <https://cli.github.com/manual/gh_issue>.
- Display a specific issue:
`gh issue view {{issue_number}}`
- Display a specific issue in the default web browser:
`gh issue view {{issue_number}} --web`
- Create a new issue in the default web browser:
`gh issue create --web`
- List the last 10 issues with the `bug` label:
`gh issue list --limit {{10}} --label "{{bug}}"`
- List closed issues made by a specific user:
`gh issue list --state closed --author {{username}}`
- Display the status of issues relevant to the user, in a specific repository:
`gh issue status --repo {{owner}}/{{repository}}`
- Reopen a specific issue:
`gh issue reopen {{issue_number}}`