[git pull Error] Your local changes to the following files would be overwritten by merge
2개의 컴퓨터를 이용해서 git add, commit push, pull을 이용해서 사용하다 보면 다음과 같은 문제가 발생합니다. 왜 이런지 알아보니충돌이 발생한 것이었습니다. => 같은 branch(master)에서 여러 사람이 작업하여 충돌 발생 해결 1. commit your changes before you merge merge하기 전에 commit 해라 $git add * $git commit -m "" $git push $git pull origin master 2. Stash them before you merge stash 명령어를 사용해라 $git stash $git pull origin master $git stash pop #저장해둔 작업을 stack에서 제거 ..
Tip and Error/Github
2021. 7. 1. 19:47
공지사항
최근에 올라온 글