1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-28 07:55:28 +02:00
tldr/pages/common/gh-secret.md
Managor ad7b6f797c
common*: refresh old pages part 6 (#16288)
Co-authored-by: Machiavelli <145562237+MachiavelliII@users.noreply.github.com>
2025-05-03 05:57:05 +03:00

36 lines
926 B
Markdown

# gh secret
> Manage GitHub secrets.
> More information: <https://cli.github.com/manual/gh_secret>.
- List secret keys for the current repository:
`gh secret list`
- List secret keys for a specific organization:
`gh secret list {{[-o|--org]}} {{organization}}`
- List secret keys for a specific repository:
`gh secret list {{[-R|--repo]}} {{owner}}/{{repository}}`
- Set a secret for the current repository (user will be prompted for the value):
`gh secret set {{name}}`
- Set a secret from a file for the current repository:
`gh secret set {{name}} < {{path/to/file}}`
- Set an organization secret for specific repositories:
`gh secret set {{name}} {{[-o|--org]}} {{organization}} {{[-r|--repos]}} {{repository1,repository2}}`
- Remove a secret for the current repository:
`gh secret remove {{name}}`
- Remove a secret for a specific organization:
`gh secret remove {{name}} {{[-o|--org]}} {{organization}}`