작성
·
457
·
수정됨
0
git clone git@github.com:jeonghwan-kim/lecture-fronted-dev-env.git
Cloning into 'lecture-fronted-dev-env'...
git@github.com: Permission denied (publickey).
fatal: Could not read from remote repository.
이런 오류가 뜨면서 파일이 안받아지는데 어떻게 해야할까요? ㅠ
답변 1
2
깃 주소를 사용하실때 git 프로토콜을 사용하셨네요. 이 경우는 컴퓨터에 rsa 키를 만들고 공유키를 깃헙 서버에 세팅해 주어야합니다.
그렇지 않을 경우는 http 프로토코로을 사용하는 방법이 있습니다. 깃헙 계정으로 인증하고 저장소를 다운받을 수 있어요.
git clone https://github.com/jeonghwan-kim/lecture-frontend-dev-env.git
파일받았습니다 감사합니다~!