error: Your local changes to the following files would be overwritten by merge:

Yunny.Log ·2022년 6월 28일
0

Debugging

목록 보기
28/69
post-thumbnail

에러의 원인

  • 로컬의 소스가 제대로 처리되지않아서 리모트의 소스를 pull 할 수 없어서 일어나는 에러

해결 방법

  • 따라서 로컬에서 처리되지 않은 부분을 창에 뜬 것과 같이 Please commit your changes or stash them before you merge. 라는 안내사항에서 알 수 있듯이 로컬에서 수행한 아이를 임시저장 해놓았다가 , 후에 pop 하면 된다.
git stash
git pull 브랜치 이름
나의 경우 : git pull origin be-feature/브랜치명
git stash pop 

참고 블로그

에러 원인 출처 : https://matamong.tistory.com/entry/Git-Your-local-changes-to-the-following-files-would-be-overwritten-by-merge-에러
해결 방법 출처 : https://goddaehee.tistory.com/253

0개의 댓글