0
0

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 3 years have passed since last update.

Github ~ permission denied 備忘録

Last updated at Posted at 2021-02-02

git clone でリモートリポジトリを読み込もうとした際にエラーが発生。
git clone git@github.com:git-repository-url

user.name@github.com: Permission denied (publickey).
fatal: Could not read from remote repository.

公開鍵がGithubに登録されているか確認 → されていた。

私の場合は、~/.ssh 下で作成していたconfigファイルが影響を与えていた。

Host github-account1
  AddKeysToAgent yes
  UseKeychain yes
  HostName github.com
  Preferredauthentications publickey
  IdentityFile ~/.ssh/id_rsa
  User account1

github.comを既にホストに割り当てている場合は、以下のコマンドを実行することで正常に動作した。

git clone git@github-account1:git-repository-url

clonepush関係で問題が起こったら一度configをチェックしてみようという話。

※ちなみにこの方法だとhttpsからgit cloneは可能ではない。
わかり次第追記。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?