githubリポジトリをライブサイトに初めて複製しようとしています。
次のように、公開鍵をローカル端末からDreamhostサーバーのホームディレクトリにプッシュしました。
cat ~/.ssh/id_rsa.pub | ssh user@myserver.com 'cat >> .ssh/authorized_keys'
これはエラーを引き起こさず、リモートサーバーでキーを確認できますが、リモートサーバーにsshした後にgithubリポジトリのクローンを作成しようとすると、次のようになります。
git clone git@github.com:gituser/myrepo.git myserver.com/mysite
私は得る:
Cloning into mysite...
Permission denied (publickey).
fatal: The remote end hung up unexpectedly
ローカルからgithubにファイルを問題なくプッシュできます(1日調整した後;))。
githubからリモートサーバー(ライブサイト)にクローンを作成するにはどうすればよいですか?