[GIT] Permission denied (publickey)
Git Clone 시도 시 Permisson denied (publickey)
오류 발생
1. Check that you are cnnecting to the correct server Git bash 를 열어서 아래 커맨드로, git 서버에 잘 접속하고 있는지 확인한다.
$ ssh -vT git@github.com
> OpenSSH_8.1p1, LibreSSL 2.7.3
> debug1: Reading configuration data /Users/you/.ssh/config
> debug1: Reading configuration data /etc/ssh/ssh_config
> debug1: /etc/ssh/ssh_config line 47: Applying options for *
> debug1: Connecting to github.com port 22.
만약 아래와 같이 -1이 identity file
뒤에 붙어있다면, SSH를 찾지 못했다는 의미이다.
debug1: Connection established.
debug1: identity file /c/Users/user/.ssh/id_rsa type 0
debug1: identity file /c/Users/user/.ssh/id_rsa-cert type -1
debug1: identity file /c/Users/user/.ssh/id_dsa type -1
debug1: identity file /c/Users/user/.ssh/id_dsa-cert type -1
debug1: identity file /c/Users/user/.ssh/id_ecdsa type -1
debug1: identity file /c/Users/user/.ssh/id_ecdsa-cert type -1
debug1: identity file /c/Users/user/.ssh/id_ed25519 type -1
debug1: identity file /c/Users/user/.ssh/id_ed25519-cert type -1
debug1: identity file /c/Users/user/.ssh/id_xmss type -1
debug1: identity file /c/Users/user/.ssh/id_xmss-cert type -1
2. SSH 키가 있는지 확인한다.
$ ls -al ~/.ssh
키가 있다면 아래와 같은 형식 중 하나로 리스팅이 될것이다.
- id_rsa.pub
- id_ecdsa.pub
- id_ed25519.pub
키가 없다면 키를 먼저 생성하자
$ ssh-keygen -t ed25519 -C "your_email@example.com"
3. SSH key를 GitHub account에 등록
Clone을 받고자하는 프로젝트의 계정으로 들어가서 내가 방금 발급받은 or 나의 SSH Key를 넣어주면 권한이 생긴 것이다.
Adding a new SSH key to your GitHub account
[참고문서] GitHub ssh 등록 관련한 공식 글/문서
댓글남기기