Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- 리액트
- AI엑스포
- 6일차
- react
- nodejs
- 딥러닝
- 2022 AI EXPO
- 텐서플로우
- 달리기
- AI 회사
- create-react-app
- Running
- 달리는사이
- 키체인
- 따릉이
- NRC
- AI 전시
- 러닝
- 국제인공지능대전
- tensorflow
- NPM
- 연구
- ipad
- npx
- Nike
- 런데이
- 화학구조
- 파일이름
- 단당류
- 키체인초기화
Archives
- Today
- Total
Tomato's BLOG
[Github] Repository not found 문제 본문
문제
git pull origin main
이 명령어 실행시
remote: Repository not found.
fatal: repository 'https://github.com/my-repo.git/' not found
에러가 발생한다.
이유
해당 레포가 private이라서
해결
참고 - https://stackoverflow.com/questions/10116373/git-push-error-repository-not-found
git remote rm origin
git remote add origin https://USER_NAME@github.com/my-repo.git/
위 처럼 원래 origin path를 지우고 에 내 username을 추가하니 해결되었다.
'개발' 카테고리의 다른 글
jupyter notebook kernel error 해결 (0) | 2021.03.17 |
---|---|
[딥러닝] 텐서플로우 모델 만들고 시작하기 (0) | 2021.02.04 |
Comments