나의 경우는 git clone URL을 잘못 가져와버림 ㅎ
만날 수 있는 오류 메세지
$ git push origin develop
ERROR: Permission to Churnobyl/20century_front.git denied to geunhye-kim.
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
해결 방법
$ git remote -v
>>> git 저장소에 등록된 모든 원격 저장소의 URL 보여주기
$ git remote set-url origin <URL>
>>> git 저장소에 등록된 원격 저장소의 URL 변경하기
'origin'이라는 이름으로 등록된 원격 저장소의 URL을 새로운 URL로 변경할 수 있다
$ git push origin master
To github.com:<name>/<repo>.git
! [rejected] master -> master (fetch first)
error: failed to push some refs to 'github.com:<name>/<repo>.git'
hint: Updates were rejected because the remote contains work that you do
hint: not have locally. This is usually caused by another repository pushing
hint: to the same ref. You may want to first integrate the remote changes
hint: (e.g., 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.
$ git pull origin master
>>> 원격 저장소에서 최신 변경 사항을 먼저 가져오기
'Git' 카테고리의 다른 글
깃모지 사용법 Gitmoji (2) | 2023.05.15 |
---|