cloneしようとしたら
git@github.com: Permission denied (publickey).
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
と出たので下記コマンドで設定ファイルを編集して
vim ~/.ssh/config
Host のあとにgitbubだけじゃなくて、github.comと書いたら解決した
Host github github.com
HostName github.com
User git
IdentityFile ~/.ssh/id_rsa_github
(参考)標準出力をクリップボードにコピーするにはpbcopyを使う
cat ~/.ssh/config | pbcopy