gpt4 book ai didi

ruby-on-rails - 在Heroku上上传网站:主机 key 验证失败

转载 作者:行者123 更新时间:2023-12-02 14:22:37 24 4
gpt4 key购买 nike

第一次在Heroku上卸载网站时,我遇到许多错误。如何纠正?

k@k-Aspire-5750G:~/q$ git clone git@github.com:priroda/programmer-site
Cloning into 'programmer-site'...
The authenticity of host 'github.com (192.30.252.131)' can't be established.
RSA key fingerprint is 16:27:ac:a5:76:28:2d:36:63:1b:56:4d:eb:df:a6:48.
Are you sure you want to continue connecting (yes/no)?
Host key verification failed.
fatal: The remote end hung up unexpectedly

我在ssh目录中有2个文件:
k@k-Aspire-5750G:~/.ssh$ ls
id_rsa id_rsa.pub

最佳答案

ssh

您在这里遇到的问题似乎是您试图将ssh转换为heroku并直接从clonegithub您的存储库?

这里的问题是,如果您通过github(第三方)连接到ssh,则基本上必须创建一个真实性 token ( ssh key ),以便您的第三方计算机能够连接到github存储库

-

修复

通常,安装git时无论如何都会对本地计算机进行身份验证,而不是heroku。因此,我建议您从本地计算机推送到Heroku,而不要尝试通过github进行克隆:

$ git remote add heroku git@heroku.com
$ git add .
$ git commit -a -m "Heroku Deploy"
$ git push heroku master

如果您是第一次这样做,则可能会返回某种要求以接受 ssh的请求或其他请求-只需接受,它应从本地计算机推送到 Heroku
Here is Heroku's take on the matter

关于ruby-on-rails - 在Heroku上上传网站:主机 key 验证失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24302704/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com