Git push 에러 해결

레일리·2021년 12월 24일
0
post-custom-banner

에러 내용 : [Rejected] Master -> Master(Fetch First) Error : Failed To Push Some Refs To

에러 원인 : git의 원격 저장소와 로컬 저장소가 동기화 되어 있지 않기 때문이다.

해경 방법 : 아래 명령으로 동기화 시켜준다.

$ git pull --rebase 원격 저장소 별칭 master

원격 저장소 별칭 : ex) origin

아래 명령으로 원격 저장소 별칭 확인 가능

$ git remote -v
origin https://github.com/Rayleigh190/repname.git (fetch)
origin https://github.com/Rayleigh190/repname.git (push)

맨 앞에 origin이 별칭이다.

profile
나야, 개발자

0개의 댓글