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,24 @@
# gh secret set
> 创建或更新 GitHub 秘密。
> 更多信息:<https://cli.github.com/manual/gh_secret_set>。
- 为当前仓库设置一个秘密(用户将被提示输入值):
`gh secret set {{name}}`
- 从文件为当前仓库设置一个秘密:
`gh secret set {{name}} < {{path/to/file}}`
- 为特定仓库设置一个秘密:
`gh secret set {{name}} --body {{value}} --repo {{owner}}/{{repository}}`
- 为特定仓库设置组织秘密:
`gh secret set {{name}} --org {{organization}} --repos "{{repository1,repository2,...}}"`
- 设置具有特定可见性的组织秘密:
`gh secret set {{name}} --org {{organization}} --visibility {{all|private|selected}}`