문제
$ git clone <git repository url>
Cloning into <git repository url>...
remote: Repository not found.
fatal: repository <git repository url> not found
GitHub private repository를 내려받으려는 중 위 처럼 repository url을 인식하지 못하는 오류 발생.
원인
해당 Repo에 접근할 수 있는 Git 계정이 OS에 설정된 Git 계정과 달라서 발생하는 문제로 예상. 로컬에서 여러 GitHub 계정을 사용할 것이기 때문에 글로벌 설정을 해주어도 매번 바꿔주어야함
해결
GitHub에서 Personal access tokens (classic)을 발급받아 아래처럼 url에 붙여서 사용
$ git clone <Personal access tokens>@<git repository url>
Cloning into <git repository>...
remote: Enumerating objects: 502, done.
remote: Counting objects: 100% (502/502), done.
remote: Compressing objects: 100% (396/396), done.
Receiving objects: 99% (497/502), 5.47 MiB | 10.93 MiB/sck-reused 0 eceiving objects: 98% (492/502), 5.47 MiB | 10.93 MiB/s
Receiving objects: 100% (502/502), 8.10 MiB | 10.97 MiB/s, done.
Resolving deltas: 100% (102/102), done.
참고
'Programming > 삽질일기' 카테고리의 다른 글
[Tip] IntelliJ에서 Java 코드 Kotlin으로 자동 변환하기 Java-to-Kotlin converter (0) | 2024.03.07 |
---|---|
[Intellij] 코드 복사 text만 하는 방법 (copy as plain text) (0) | 2024.03.06 |
[IntelliJ] IntelliJ에서 Java 21 사용하기위해 2023.03으로 업데이트 (1) | 2024.01.04 |
[Gradle] Spring Boot 특정 Java version으로 실행하기 (0) | 2024.01.02 |
Intellij IDEA 무한 indexing 문제 해결 invalidate caches (0) | 2024.01.02 |
댓글