Git と GitHub は初めてです。
新しいリポジトリを作成し、ローカル マシンでクローンを作成しようとしました。
https および git-readonly URL で機能しました。つまり、以下は正常に機能しました。
git clone https://github.com/npsabari/testrepo.git
git clone git://github.com/npsabari/testrepo.git
しかし、試してみるとgit clone git@github.com:npsabari/testrepo.git
、うまくいきませんでした。次のエラーメッセージが表示されました。
Cloning into 'testRepo'...
Permission denied (publickey).
fatal: The remote end hung up unexpectedly
そして、試してみssh git@github.com
ましたが、エラーが発生しました:
"Permission denied (publickey)."
ウェルカム メッセージの代わりに
これを修正するにはどうすればよいですか? エラーの理由は何ですか?