我有多个heroku域名。在我创建了一个新的,然后我推了之后,它检查了第一个的rsa。
如何处理?感谢。
203-96:first_app marklaudalauw $ heroku created 创建serene-chamber-4301 ...完成,堆栈是雪松 http://serene-chamber-4301.herokuapp.com/ | git@heroku.com:宁静室-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。
致命:远程端意外挂断
答案 0 :(得分: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>
答案 1 :(得分:0)
我设法通过以下命令解决它:
git remote rm heroku
git remote add heroku git@heroku.com:serene-chamber-4301.git
...谢谢