SMALL

Study 441

[Git] Permission denied (publickey) 에러 해결방법

git permission denied (publickey). fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists SSH key가 없어서 나는 에러이다. Git은 SSH or http 기반으로 사용을 하게 되는데 SSH key로 접속해서 사용하는 경우는 PC마다 SSh key를 등록해주어야 함. 1. 터미널창을 열고 ssh key 생성 명령어를 입력. ssh-keygen -t rsa -C "Github 계정 이메일 주소" Enter를 계속 누르면 id_rsa 파일이 생성됨. 경로는 C:\Users\[사용자]/.ssh/id_rsa로 되어있..

Study/Git 2022.04.30

[Git] Git push 할 때 username, password 물어보면?

| 이런 일이 일어날 때 매번 찾아보기 귀찮아서 기록 함. 문제는 SSH 때문인데 git remote -v로 확인 했을 때 https로 시작한다면 아래와 같이 설정한다. Git Remote 설정할 때 아래의 주소를 입력하면 된다. 그리고 Git remote를 재설정한다 git remote set-url origin (ssh URL) 위 명령어를 입력한 후 git remote -v로 확인하면 https://...로 확인되던 것이 git@...으로 변경된다. 이제 정상 작동 됨.

Study/Git 2022.04.30
반응형