0

Heroku で Web アプリケーションに参加するよう招待されました。git clone コマンドを入力すると、このエラー メッセージが表示され続けます。

The authenticity of host 'heroku.com (50.19.85.154)' can't be established.
RSA key fingerprint is 8b:48:5e:67:0e:c9:16:47:32:f2:87:0c:1f:c8:60:ad.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added 'heroku.com,50.19.85.154' (RSA) to the list of known hosts.
Permission denied (publickey).
fatal: The remote end hung up unexpectedly

入力コマンド:

git clone git@heroku.com:stormy-stone-5088.git -o heroku 
4

1 に答える 1

1

他のプロジェクトで行われていない場合は、おそらく秘密鍵を設定する必要があります (したがって、作成者が想定することがよくあります)。

タイプ

cd ~; ssh-keygen -t dsa
#(changes directory to home and generate the keys.)

Return キーを 4 回押し、かかとを 3 回クリックすると、キーが挿入されます。~/.ssh

~/.ssh/id_rsa.pubあなたの公開鍵であり、他の人に与えるものです。

于 2012-06-27T20:15:30.493 に答える