System Grab Bag

View all TLDR pages from common (or from all pages)

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 --org {{organization}}
  • List secret keys for a specific repository:
    gh secret list --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}} --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}}

License and Disclaimer

The content on this page is copyright © 2014—present the tldr-pages team and contributors.
This page is used with permission under Creative Commons Attribution 4.0 International License.

While we do attempt to make sure content is accurate, there isn't a warranty of any kind.