차곡차곡

[Error] git pull 에러 (Your local changes to the following files would be overwritten by merge) 본문

Github

[Error] git pull 에러 (Your local changes to the following files would be overwritten by merge)

sohy 2022. 5. 15. 00:40

문제 상황

깃헙에 .DS_Store 파일이 또 올라가 있는 걸 보고 그냥 깃헙에서 지워주고 pull 받았더니 해당 에러 발생

 

해결 방법

git stash   # 현재 디렉토리의 파일들 임시로 백업
git pull origin main
git stash pop   # 변경 사항 적용하고 스택에서 제거

 

 

참고 자료 : https://goddaehee.tistory.com/253

Comments