Amazon EC2インスタンス内にgithub経由で git clone したリポジトリから、pushもpullもできなくなってしまいました。

初学者のため、至らない点があるかもしれないですが、2日ほど調べてトライアンドエラーをしましたが、解決しなく、ご教授頂けると幸いです。宜しくお願いいたします。

環境

  • macbook pro
  • terminal
  • Amazon EC2 インスタンス

できていること

  • ssh keyのgithubへの登録
  • ssh git@github.com でssh接続をすると、下記の表示が出て接続が成功する

    Hi [username]! You've successfully authenticated, but GitHub does not
    provide shell access.Connection to github.com closed.
    
  • ssh接続をするように設定されています。 git remote -v で確認すると下記の表示。

    origin  ssh://[username]@github.com/[organization]/[repo].git (fetch)
    origin  ssh://[username]@github.com/[organization]/[repo].git (push)
    

出来ていないこと(困ってること)

  • git push origin, sudo git push origin, git push git@github.com:[organization]/[repo].git でも全て下記が返ってくる

    Permission denied (publickey).
    fatal: Could not read from remote repository.
    
    Please make sure you have the correct access rights
    and the repository exists.