add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

View File

@@ -0,0 +1,32 @@
# gh 问题
> 管理 GitHub 问题。
> 更多信息:<https://cli.github.com/manual/gh_issue>。
- 显示特定问题:
`gh issue view {{issue_number}}`
- 在默认网页浏览器中显示特定问题:
`gh issue view {{issue_number}} --web`
- 在默认网页浏览器中创建新问题:
`gh issue create --web`
- 列出带有 `bug` 标签的最后 10 个问题:
`gh issue list --limit {{10}} --label "{{bug}}"`
- 列出特定用户创建的已关闭问题:
`gh issue list --state closed --author {{username}}`
- 显示与用户相关的问题状态,在特定仓库中:
`gh issue status --repo {{owner}}/{{repository}}`
- 重新打开特定问题:
`gh issue reopen {{issue_number}}`