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,36 @@
# gh secret
> 管理 GitHub 密钥。
> 更多信息:<https://cli.github.com/manual/gh_secret>。
- 列出当前仓库的密钥:
`gh secret list`
- 列出特定组织的密钥:
`gh secret list --org {{organization}}`
- 列出特定仓库的密钥:
`gh secret list --repo {{owner}}/{{repository}}`
- 为当前仓库设置一个密钥(用户将被提示输入值):
`gh secret set {{name}}`
- 从文件为当前仓库设置一个密钥:
`gh secret set {{name}} < {{path/to/file}}`
- 为特定仓库设置组织密钥:
`gh secret set {{name}} --org {{organization}} --repos {{repository1,repository2}}`
- 删除当前仓库的密钥:
`gh secret remove {{name}}`
- 删除特定组织的密钥:
`gh secret remove {{name}} --org {{organization}}`