본문 바로가기
💻CODING/etc.

[git] Repository not found 오류 해결

by 코딩하는 갓디노 2021. 7. 2.

repository not found git 오류

 

git clone 과정 중
생긴 오류입니다. 

 

Mac 비공개 계정으로 진행 중인 프로젝트를
다른 window 컴퓨터에서 당겨오려고 git clone 하던 중,
Repository not found 라는 오류가 나왔습니다. 

오류 메시지

 

Repository not found 해결 방법

before

git clone https://github.com/repository username/repository name.git

 

after

https:// + ['git user 이름':'git 비밀번호']@ + 나머지 주소를 입력하면 됩니다. 

git clone https://['git user 이름':'git 비밀번호'@]github.com/repository username/repository name

 

위 코드로 다시 git clone을 하니, 잘 작동됩니다. 

반응형

댓글