상세 컨텐츠

본문 제목

Gitlab publickey 관련 에러를 만났을 때

SW/미분류

by 푸로그 2019. 2. 16. 23:20

본문

블로그 글 백업 원글 일시:2019-01-18 23:17

Troubleshooting

$ git push -u origin master  
> Permission denied (publickey).  
> fatal: Could not read from remote repository.
>Please make sure you have the correct access rights  
and the repository exists.

위와 같은 에러를 만났을때,
본인의 public key가 Gitlab에 등록(허용)되어 있지 않기 때문에 발생.

ssh-key 생성

기본적으로 ~/.ssh 밑에 생성된다.
윈도우에서 ~/ 의 위치는 user 폴더 밑이다.
(ex: C:\Users\<사용자이름> )

Gitlab에 등록

-> 자신의 C:\Users\<사용자이름>\id_rsa.pub 파일을 찾아서 등록하자

다시 Push를 해보자