HEROJOON 블로그(히로블)

[Git] remote: Repository not found. 해결 본문

Git

[Git] remote: Repository not found. 해결

herojoon 2022. 4. 5. 23:11
반응형

> git clone https://github.com/herojoon/my-project.git

라고 입력해서 git repository를 clone하려고 할때, 아래와 같이 에러가 난다면..!

Cloning into 'my-project'...
remote: Repository not found.
fatal: repository 'https://github.com/herojoon/my-project.git/' not found

 

<windows환경에서 해결하는 방법>

위처럼 자격 증명 관리자에서 github 계정을 설정하고 다시 > git clone https://github.com/herojoon/my-project.git 을 실행하면 not found 에러 없이 github username/password를 한번 더 물어봅니다.

 

이때 username에 github계정을, password에 github에서 발급받은 token을 입력하시면 됩니다.

 

*github 토큰 발급 받는 방법 참고: https://herojoon-dev.tistory.com/108?category=860304 

 

[Git] Support for password authentication was removed on August 13, 2021. Please use a personal access token instead. 해결하

GitHub에 Push하려고 할 때 기존에는 username, password로 push가 되었지만, 어느 순간부터 push가 되지 않으면서 아래와 같은 에러가 출력되었습니다. 1. Error명 C:\Users\herojoon\IdeaProjects\sameple-proje..

herojoon-dev.tistory.com

 

반응형
Comments