-
error: failed to push some refs to (feat. git push 에러)error handling 2022. 2. 28. 14:30반응형
js 파일을 수정하고 git add -> git commit -> git push 까지 해주는 과정에서 push가 계속해서 에러가 났다.
git push에서 자주 발생하는 error: failed to push some refs to 라는 에러였다
이는 원격 저장소(github)에 내 로컬(내 컴퓨터)에는 없는 파일이 있을 때
내 파일은 push하면 발생하는 오류이다.해결 방법은 간단하다.
원격 저장소에서 내 로컬에 저장하지 않은 파일을 pull한 후 원격 저장소에 다시 push하면 끝!
내가 해결한 방법
git add -> git commit 까지 완료한 후
git pull origin master로 원격 저장소를 pull 해준 뒤다시 git push origin master 입력하니 오류없이 잘 push 되었고 github에서도 확인 가능했다 !
반응형'error handling' 카테고리의 다른 글
배포 단계에서 발견한 에러(This XML file does not appear...) (0) 2022.04.18 [ERROR] You are running `create-react-app` 4.0.3, which is behind the latest release (0) 2022.03.25 Headers에서 Content-Type과 Accept의 차이(Feat. OAuth 2.0) (0) 2022.03.19 git push 오류 (url, ssh) (0) 2022.02.25 TypeError: Assignment to constant variable(feat. 변수 선언의 중요성) (0) 2022.02.25