git overwritten 오류, develop branch 가져오기
오류 발생
error: Your local changes to the following files would be overwritten by checkout
checkout 할 때 위와 같이 error가 발생했다.
해결방법
merge 또는 switch branch 이전에 변경사항을 commit 하거나 stash 하면 해결된다고 한다.
stash를 통해 해결하고 checkout을 했다.
develop branch 가져오기
$ checkout develop
develop 브랜치를 가져오려고 checkout develop을 했더니 최신 commit 된 develop 브랜치가 아닌 이상한 develop 브랜치가 기존 파일이 사라져버렸다.
해결방법
$ git remote update // 원격 저장소 갱신 $ git branch -r // 원격 저장소의 리스트 확인 $ git checkout -t origin/develop // 해당 브랜치로 checkout
- $ git checkout -t : 원격 저장소의 branch 이름과 동일한 이름의 로컬 저장소 branch를 생성하고, 해당 branch로 checkout 한다.
- $ git checkout -b : branch 이름을 변경해서 가져온다.
- $ git checkout -f : 문제가 발생해도 강제로 branch 이름과 동일한 로컬 저장소 branch를 생성하고, 해당 branch로 checkout 한다.
Author And Source
이 문제에 관하여(git overwritten 오류, develop branch 가져오기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@jinyeong-afk/git-overwritten-오류-develop-branch-가져오기저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)