[Git] git pull 에러(error: Your local changes to the following files would be overwritten by merge)
오류
error: Your local changes to the following files would be overwritten by merge
git pull을 할 때 위와 같이 오류가 발생하는 경우가 있다.
원인
이는 달라진 파일들과 git에서 가져오려는 파일들의 충돌 때문에 발생하는 오류이다.
해결
- git stash
: staging 영역에 있는 파일의 변경사항을 스택에 넣어둔다.~$ git stash ~$ git pull
- git add .
: 달라진 파일들을 staging 영역에 저장하고 git pull을 하면 오류를 해결할 수 있다.~$ git add . ~$ git pull
Author And Source
이 문제에 관하여([Git] git pull 에러(error: Your local changes to the following files would be overwritten by merge)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@jinyeong-afk/Git-git-pull-에러error-Your-local-changes-to-the-following-files-would-be-overwritten-by-merge저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)