Error :: Your local changes to the following files would be overwritten by checkout
1 에러 상황 언어 : Python 상황 : checkout(branch 변경)이나 pull을 할 경우 발생 2 Error Message error: Your local changes to the following files would be overwritten by checkout: ... Please commit your changes or stash them before you switch branches. Aborting 3 해결 방법 git stash ♬ 현재 Staging 영역 내 파일의 변동사항을 스택에 넣는다 선택 1) git checkout [변경 할 branch 이름] 선택 2) git pull origin [branch 이름] ♬ checkout이나 pull 실행 git stash p..