ssh 내에서 git clone을했을 때의 permission denied를 해결한다

1213 단어 SSHGitHubGitgitclone

환경



Mac OS Catalina 버전 10.15.4

전제



ssh 내에서 git clone을 시도합니다.
git clone [email protected]: 自分のリポジトリのURL

터미널에서 치면
Warning: Permanently added 'github.com,13.114.40.48' (RSA) to the list of known hosts.
Permission denied (publickey).
fatal: Could not read from remote repository.

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

가서 막혔다 ......

해결책



SSH가 아니라 https에서 클론으로 잘 할 수있었습니다.
git hub에서 https를 눌러 URL 복사


git clone https:// 自分のリポジトリのURL

무사히 완료!


Cloning into ...
remote: Enumerating objects: 150, done.
remote: Counting objects: 100% (150/150), done.
remote: Compressing objects: 100% (115/115), done.
remote: Total 150 (delta 17), reused 150 (delta 17), pack-reused 0
Receiving objects: 100% (150/150), 528.91 KiB | 829.00 KiB/s, done.
Resolving deltas: 100% (17/17), done.

좋은 웹페이지 즐겨찾기