728x90
사용 프로그램 & 버젼 등 환경
git bash
win10
에러메세지
Permission denied (publickey)
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.
상황
git clone할려고 하니 발생
원인
github 개인계정과 회사계정 동시에 쓰기 때문에 ssh설정이 필요한 상태였음
해결
- ssh키 새로 만들기
- git 사용자로 연결하기
모든 연결은 github 사용자 이름이 아닌 git사용자로 이루어져야함
// ssh-keygen -t rsa -C "계정 메일주소" // 계정 등록
// 계정 등록 이후, git 사용자 연결 설정
$ ssh -T git@github.com
아래와 같은 메세지를 볼 수 있다
참고자료
https://docs.github.com/ko/authentication/troubleshooting-ssh/error-permission-denied-publickey
728x90
반응형
'Git & GitHub' 카테고리의 다른 글
[Git] git SSH 설정 후 사용법 (0) | 2023.06.30 |
---|---|
[Git] git merge 정리 (0) | 2023.04.15 |
[Git] git clean 정리 (0) | 2023.03.25 |
[Git] Working Directory, Staging Area, Repository 개념 (0) | 2023.03.18 |
[Git] git rm 정리 (0) | 2023.03.12 |