コピペした.sshだと警告が出てgit cloneできなかった

経緯

OSをクリーンインストール後、退避しておいた.sshをコピペしてgit cloneしようとしたら下の警告が出て失敗した。

@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@         WARNING: UNPROTECTED PRIVATE KEY FILE!          @
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
Permissions 0644 for '/Users/nomnel/.ssh/id_rsa' are too open.
It is required that your private key files are NOT accessible by others.
This private key will be ignored.
Load key "/Users/nomnel/.ssh/id_rsa": bad permissions
Permission denied (publickey).
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

原因と対策

秘密鍵のパーミッションが0644になっていてtoo openだと怒られているので

chmod 0600 ~/.ssh/id_rsa

して解決。