Closed3

git push時の'Permission denied (publickey)'というエラー

keikei

【実行したコマンド】

git remote add origin git@github.com:<username>/<repository>.git
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.

keikei

【状況】

Github上で新規に作成したリポジトリに対して、git pushでファイルの送信を試みた際のエラー

【エラー発生までの経緯】

1,Github上のsetting → Developer Settings → Personal access tokensのtokens(classic) → Generate new token
2,権限全て付与した後、tokenをコピーして保存
3,git remote add origin git@github.com:<username>/<repository>.gitを入力後、username,passwordを求められるかと思いきや、上記のエラーが発生

どうやら、SSHでも認証できるらしいが、以前にLinuxでSSHキー認証をした経験がある為、今回はこのままPersonal access tokens(classic)を設定してみる。

このスクラップは4ヶ月前にクローズされました