LoginSignup
0
0

More than 3 years have passed since last update.

git push でPermission denied (publickey). が出た場合の対処法

Posted at

$ git push -u origin --all
で Bitbucketにプッシュしようとした際に

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

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

このように返された。

要因
公開鍵をBitbucketに追加していなかったからpushできなかった?

解決したやり方

$ cat ~/.ssh/id_rsa.pub

で公開鍵を出力

Bitbucketで公開鍵を追加する。

再度に
$ git push -u origin --all
でプッシュできた。

0
0
0

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
0
0