Heroku Git - fatal: The remote end hung up unexpectedly

匿名 (未验证) 提交于 2019-12-03 01:49:02

问题:

Microsoft Windows [Version 6.1.7600] Copyright (c) 2009 Microsoft Corporation.  All rights reserved.  E:\Windows\system32>heroku login Enter your Heroku credentials. Email: mymail@yahoo.com Password (typing will be hidden): Found existing public key: E:/Users/Stewie/.ssh/id_rsa.pub Uploading SSH public key E:/Users/Stewie/.ssh/id_rsa.pub... failed  !    Fingerprint already exists. Please use one SSH key per Heroku account  E:\Windows\system32>git clone git@heroku.com:sharp-winter-5732.git -o heroku Cloning into 'sharp-winter-5732'...   !  Your key with fingerprint f2:a2:f9:4a:c4:16:5b:f1:5a:21:cb:d8:c4:d2:18:ef is  not authorized to access sharp-winter-5732.  fatal: The remote end hung up unexpectedly  E:\Windows\system32> 

Why i am keep having this error? What should i do? And don't give me a minus, because i already looked at

https://help.github.com/articles/set-up-git

and gives me

E:\Windows\system32>git config --global user.name "Stewie"  E:\Windows\system32>git config --global user.email "mymail@yahoo.com"  E:\Windows\system32>git config --global credential.helper cache warning: credential.helper has multiple values error: cannot overwrite multiple values with a single value Use a regexp, --add or --replace-all to change credential.helper.  E:\Windows\system32>git config --global credential.helper 'cache --timeout=3600'   E:\Windows\system32>git clone git@heroku.com:sharp-winter-5732.git -o heroku Cloning into 'sharp-winter-5732'...  !  Your key with fingerprint f2:a2:f9:4a:c4:16:5b:f1:5a:21:cb:d8:c4:d2:18:ef is not authorized to access sharp-winter-5732.  fatal: The remote end hung up unexpectedly  E:\Windows\system32> 

and i also tried

GitHub: Permission denied (publickey). fatal: The remote end hung up unexpectedly

i don,t know what to do ....

回答1:

It seems a problem with your keys. Perhaps you need to upload your current key to he heroku

heroku keys:add 

Details at "Managing Your SSH Keys": https://devcenter.heroku.com/articles/keys



回答2:

Permission denied (publickey) when deploying heroku code. fatal: The remote end hung up unexpectedly

In this link, I had the same issue and the steps below worked for me:

    ->heroku login        abc@gmail.com & password     ->cd C:\Users\yourusername\.ssh     ->ssh-keygen -t rsa -f id_rsa 

If it asks for any passphrase don't use blank, fill with a passphrase but do not forget it.

    ->heroku keys:add "id_rsa.pub" 

Change directory to workspace, then

    ->git clone git@heroku.com:stark-dawn-1234.git -o heroku 

Use the passphrase that you set above.



标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!