40
28

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Githubのsshで何故かPermission denied (publickey)となる場合の設定メモ

Posted at

ちょっと詳しい理由はわからないんですが、特定の端末だけ以下の様なエラーがでてpush/clone等ができない時がありました。

Permission denied (publickey).
fatal: Could not read from remote repository.

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

その場合は以下のようにしたら直りました。

$ eval "$(ssh-agent -s)"
$ ssh-add ~/.ssh/id_rsa # github用のssh-keyへのパス

github Permission denied って急に言われました(´・ω・`) - rochefort's blog
Generating a new SSH key and adding it to the ssh-agent - User Documentation

40
28
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
40
28

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?