본문 바로가기

TroubleShooting/Git

Git Private Repository clone시 remote: Repository not found

$ git clone https://github.com/test.git
Cloning into 'test'...
remote: Repository not found.
fatal: Authentication failed for 'https://github.com/test.git/'

 

 위와 같은 
remote: Repository not found.
fatal: Authentication failed for 'https://github.com/test.git/'

라는 메시지를 확인했다면

해당 Repository에 소속되어 있는 유저의 이름을 "github.com" 앞에 추가해주면 된다.


$ git clone https://유저이름@github.com/test.git