[해결법] gh-pages Failed to get remote.origin.url

less than 1 minute read

gh-pages -d build를 했을 때 아래와 같은 에러와 함께 실패하는 경우가 있다.

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).

해결법

  1. remote repo에 origin이 제대로 설정되어 있는지 확인한다.(현재 origin에 오타가 나서 orgin으로 되어 있음)
     $ git remote -v
     orgin  git@github.com:{Repository 주소} (fetch)
     orgin  git@github.com:{Repository 주소} (push)
    
  2. 잘못 설정된 remote repo를 삭제한다.
     $ git remote remove orgin
    
  3. 올바른 이름으로 remote repo를 설정한다.
     $ git remote add origin git@github.com:{Repository 주소}
    
  4. 다시 gh-pages -d build를 실행한다.

Comments