Joonas' Note

Joonas' Note

npm deploy 할 때 Failed to get remote.origin.url 오류 해결 방법 본문

개발/Javascript

npm deploy 할 때 Failed to get remote.origin.url 오류 해결 방법

2023. 5. 17. 18:37 joonas

    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

     

    Comments