Git 브랜치 checkout error

RNR·2022년 1월 14일
0

Git

목록 보기
12/16
post-custom-banner

git을 사용하다보면 브랜치를 옮겨야하는데, 이런 에러와 함께 checkout이 안 되는 경우가 있다.

error: Your local changes to the following files would be overwritten by checkout:
        src/views/Home.vue
Please commit your changes or stash them before you switch branches.
Aborting

해결방법

git stash를 통해 해결한다!

  1. git stash 를 통해 저장한다.
  2. git pull {저장소}
  3. git stash pop
profile
개인적 공부 기록. 그때그때 메모합니다.

0개의 댓글