mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-05 13:05:59 +02:00
gh-secret: add page (#5133)
This commit is contained in:
parent
be6bf11846
commit
7b68d5cefd
1 changed files with 36 additions and 0 deletions
36
pages/common/gh-secret.md
Normal file
36
pages/common/gh-secret.md
Normal file
|
@ -0,0 +1,36 @@
|
|||
# gh secret
|
||||
|
||||
> Manage GitHub secrets from the command line.
|
||||
> 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 --org {{organization}}`
|
||||
|
||||
- List secret keys for a specific repository:
|
||||
|
||||
`gh secret list --repo {{owner}}/{{repository}}`
|
||||
|
||||
- Set a secret from a file for the current repository:
|
||||
|
||||
`gh secret set {{name}} < {{path/to/file}}`
|
||||
|
||||
- Set a secret for a specific repository:
|
||||
|
||||
`gh secret set {{name}} --body {{value}} --repo {{owner}}/{{repository}}`
|
||||
|
||||
- Set an organization secret for specific repositories:
|
||||
|
||||
`gh secret set {{name}} --org {{organization}} --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}} --org {{organization}}`
|
Loading…
Add table
Reference in a new issue