0

我有多个heroku 域。在我创建了一个新的并推送之后,它检查了第一个的 rsa。

如何处理?谢谢。

203-96:first_app marklaudauw$ heroku create 创建 serene-chamber-4301... 完成,堆栈是雪松 http://serene-chamber-4301.herokuapp.com/ | git@heroku.com:serene-chamber-4301.git

203-96:first_app marklaudalauw$ git push heroku master

!您的指纹为 98:6b:fe:d4:e3:0a:17:16:ab:f8:11:18:a2:66:76:b6 的密钥无权访问 glacial-shelf-8147。

致命:远端意外挂断

4

2 回答 2

0

在推动之前试试这个: -

$ git remote add heroku git@heroku.com:yourappname.git  ( to add current stack )

$ heroku keys:add ~/.ssh/id_rsa.pub (if stuck with key then add local machine key to heroku) 

$ git commit -m "message"

$ git push heroku master <branch name>
于 2013-07-22T12:36:42.230 回答
0

我设法通过以下命令解决了它:

git 远程 rm heroku

git 远程添加 heroku git@heroku.com:serene-chamber-4301.git

谢谢...

于 2013-07-23T18:25:46.297 回答