github上に新しくfoo
という名前のリモートリポジトリを作り、以下のようにしてリモートリポジトリの初めてのpushを試みました。
git remote add origin git@github.com:私のgithubユーザー名/foo.git git branch -M main git push -u origin main
すると、最後のコマンドgit push -u origin main
に対して、以下のようなエラーが発生します。
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.
調べると同じような状況でこれと同じエラーが出ている例がちらほら報告されており(例えばこのサイト)、大体の事例では「sshキーの作成と設定、githubへの公開鍵の登録をし直す」という対処法で解決しているようなので、試したのですが、再びgit push -u origin main
を実行すると、依然として上のエラーが発生します。
どうすればよいでしょうか?
ご回答よろしくお願いいたします。
回答2件
あなたの回答
tips
プレビュー