팀원들과 git 을 이용해서 협업을 할 때 git pull 시 위와 같은 에러가 발생할 때가 있다. error: Your local changes to the following files would be overwritten by merge: index.html Please commit your changes or stash them before you merge. local 환경에서의 변경사항과 github 의 최신 변경사항이 충돌을 해서 그 전에 확인을 하기 위함이다. 오류메세지대로 commit 을 한 번 해서 저장을 하는 방법을 사용하자. commit 을 넣었을 시에 commit 은 로컬 환경에 변경사항을 저장하고, pull 했을 때 로컬 환경의 내용과 github 의 내용을 merg..