Joonas' Note
Joonas' Note
npm deploy 할 때 Failed to get remote.origin.url 오류 해결 방법 본문
1. 실제로 현재 git config 에 origin 이 없어서 발생하는 오류일 수 있다.
아래 명령어로 remote.origin 주소가 올바르게 설정되어있는 지 확인하고,
git remote -v
없다면 아래와 같이 배포하고자 하는 git repository의 주소를 추가한다.
git remote set-url origin https://....
2. origin 설정은 분명 잘 되어있는데 안되는 경우
Failed to get remote.origin.url (task must either be run in a git repository with a configured origin remote or must be configured with the "repo" option).
npm 과 관련한 모듈과 캐시를 날리고 재설치 후 다시 실행해본다.
rm -rf build/ node_modules/
npm cache clean --force
'개발 > Javascript' 카테고리의 다른 글
눈코입 맞추기 게임 만들기 2편 (0) | 2024.01.19 |
---|---|
눈코입 맞추기 게임 만들기 1편 (0) | 2024.01.17 |
HTMLElement.innerText가 가져온 성능 저하 살펴보기 (0) | 2022.10.05 |
티스토리 기본형 #2 커스텀 스킨 (6) | 2022.06.15 |
BOJ Extended를 만들고 1년이 지났다. (0) | 2022.04.24 |
Comments