"heroku keys:add" 是做什么的?
What does "heroku keys:add" do?
heroku keys:add 是在互联网上阅读 heroku 时经常出现的命令。
它具体是做什么的?
如果您使用 SSH 而不是 HTTP 作为 git 传输,它用于上传您的 public 密钥。
If you don’t already use SSH and if you want to use SSH Git transport
on Heroku, you’ll need to create a public/private key pair to deploy
code. This keypair is used for the strong cryptography and that
uniquely identifies you as a developer when pushing code changes.
heroku keys:add 是在互联网上阅读 heroku 时经常出现的命令。
它具体是做什么的?
如果您使用 SSH 而不是 HTTP 作为 git 传输,它用于上传您的 public 密钥。
If you don’t already use SSH and if you want to use SSH Git transport on Heroku, you’ll need to create a public/private key pair to deploy code. This keypair is used for the strong cryptography and that uniquely identifies you as a developer when pushing code changes.