git pull 에러 해결방법 (Your local changes to the following files would be overwritten by merge )

YongjLEE·2023년 8월 22일
0

Error 해결

목록 보기
2/3

git pull을 하다 보면 Your local changes to the following files would be overwritten by merge라는 메시지를 많이 봐왔을 것이다.

한 브랜치(ex main)에서 여러 사람들이 작업하다보면 충돌이 발생할 것이다.

해결방법 1 : git stash(추천)

  • 현재 디렉토리의 파일을 임시로 백업하고 깨끗한 상태로 돌린다.

  • 버전관리 되는 대상 파일들을 임시저장 해둔다고 보면 된다.

1) 해당 명령어를 통해 현재 Staging 영역에 있는 파일의 변경사항을 스택에 넣어 둔다.

$ git stash

2) master에서 pull하거나, git checkout 등 원격 저장소에서 내 로컬 브랜치로 변경사항을 적용한다.

$ git pull origin master

3) 변경 사항을 적용하고, 스택에서 제거 한다.

$ git stash pop 

이후 정상적으로 git pull이 가능한 것을 볼 수 있다.

해결방법 2 : git add

git add를 통해 해당 파일을 staging 영역에 저장하고 git pull 작업을 해도 해당 오류는 해결 가능하다.

ex)

$ git status

On branch master
Your branch is behind 'origin/master' by 29 commits, and can be fast-forwarded.
(use "git pull" to update your local branch)

Changes not staged for commit:
(use "git add ..." to update what will be committed)
(use "git restore ..." to discard changes in working directory)
modified: 소스~

no changes added to commit (use "git add" and/or "git commit -a")

레퍼런스 : https://goddaehee.tistory.com/253

profile
이용준의 블로그입니다.

0개의 댓글