Skip to content
This repository has been archived by the owner on Feb 12, 2022. It is now read-only.

Latest commit

 

History

History
70 lines (50 loc) · 1.22 KB

keys.md

File metadata and controls

70 lines (50 loc) · 1.22 KB

heroku keys

add an SSH key for a user if no KEY is specified, will try to find ~/.ssh/id_rsa.pub

heroku keys

display your SSH keys

USAGE
  $ heroku keys

OPTIONS
  -l, --long  display full SSH keys
  --json      output in json format

heroku keys:add [KEY]

add an SSH key for a user

USAGE
  $ heroku keys:add [KEY]

OPTIONS
  -y, --yes  automatically answer yes for all prompts

DESCRIPTION
  if no KEY is specified, will try to find ~/.ssh/id_rsa.pub

EXAMPLES
  $ heroku keys:add
  Could not find an existing public key.
  Would you like to generate one? [Yn] y
  Generating new SSH public key.
  Uploading SSH public key /.ssh/id_rsa.pub... done

  $ heroku keys:add /my/key.pub
  Uploading SSH public key /my/key.pub... done

heroku keys:clear

remove all SSH keys for current user

USAGE
  $ heroku keys:clear

heroku keys:remove KEY

remove an SSH key from the user

USAGE
  $ heroku keys:remove KEY

EXAMPLES
  $ heroku keys:remove [email protected]
  Removing [email protected] SSH key... done