인프런 영문 브랜드 로고
인프런 영문 브랜드 로고

Inflearn Community Q&A

nsonestudy11205's profile image
nsonestudy11205

asked

Understanding and Practice of Frontend Development Environment (webpack, babel, eslint..)

Entry and Output (Practice)

깃허브 확인 문의

Written on

·

507

·

Edited

0

캡처.PNG

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.

 

이런 오류가 뜨면서 파일이 안받아지는데 어떻게 해야할까요? ㅠ

node.js웹팩babeleslint

Answer 1

2

jeonghwan님의 프로필 이미지
jeonghwan
Instructor

깃 주소를 사용하실때 git 프로토콜을 사용하셨네요. 이 경우는 컴퓨터에 rsa 키를 만들고 공유키를 깃헙 서버에 세팅해 주어야합니다.

그렇지 않을 경우는 http 프로토코로을 사용하는 방법이 있습니다. 깃헙 계정으로 인증하고 저장소를 다운받을 수 있어요.

git clone https://github.com/jeonghwan-kim/lecture-frontend-dev-env.git

nsonestudy11205님의 프로필 이미지
nsonestudy11205
Questioner

파일받았습니다 감사합니다~!

nsonestudy11205's profile image
nsonestudy11205

asked

Ask a question