TroubleShooting/Git

[TroubleShooting/ Git] Private Repository clone시 remote: Repository not found

머지?는 병합입니다 2024. 8. 20. 10:55
$ 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