본문 바로가기
Git(GitHub)/Git 오류 노트

[Git 에러] error: failed to push some refs to 에러

by 현군의 coding&IT story 2024. 4. 2.

문제 상황

commit을 안한지 좀 오래 되었더니 최종적으로 git에 push 하기 위한 git push origin master 명령어에서 아래와 같은 오류가 발생했다.

 

error: failed to push some refs to 'https://github.com/HwangHyeonseok/silvia_server.git'

문제 원인

내 로컬(내 컴퓨터)에 없는 파일이 원격 저장소(github repository)에 있을 때 내 파일을 push 하면 발생하는 오류이다.

이 상태에서 push을 하게 되면 막히게 된다.

문제 해결

1) 원격 저장소와 내 컴퓨터의 상태를 똑같이 만든다.

git pull origin master

 

 


2) git push origin master 을 통해 (또는 git push origin main) 다시 push을 진행해줍니다.

 git push origin master