Recent Posts
Recent Comments
HEROJOON 블로그(히로블)
[Git] remote: Repository not found. 해결 본문
반응형
> 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' 카테고리의 다른 글
Git 설치하기 (0) | 2023.12.04 |
---|---|
[Git] Windows에서 git init 취소하기 (0) | 2023.01.30 |
[Git] Support for password authentication was removed on August 13, 2021. Please use a personal access token instead. 해결하기 (0) | 2021.09.16 |
[Git] Git Remote의 특정 Commit Hash값 위치로 되돌리기 (0) | 2020.11.26 |
[Git] 원격저장소 branch 제거하기 (0) | 2020.11.23 |
Comments