git clone fails for Heroku project

前端 未结 3 1914
旧时难觅i
旧时难觅i 2021-01-31 13:02

(on Mac) I\'m trying to clone my project from my new computer. I first generated the ssh key pairs:

heroku keys:add /Users/y/.ssh/heroku_rsa.pub
<
3条回答
  •  独厮守ぢ
    2021-01-31 13:23

    It looks like your key is not loaded. Only default named key (id_rsa) loaded by default. Load the heroku key by using ssh-add command:

    ssh-add ~/.ssh/heroku_rsa
    

提交回复
热议问题