본문 바로가기

git

You have not concluded your merge (MERGE_HEAD exists)

https://jmlim.github.io/git/2019/02/18/git-pull-fail-problem/ 

 

git merge 후 pull 실패 시 해결 방안 - You have not concluded your merge (MERGE_HEAD exists) · 기억하기 위한 개

커밋을 제대로 하지 않았을 경우 아래 메세지가 뜰 수 있음. Pulling is not possible because you have unmerged files

jmlim.github.io

 

You have not concluded your merge (MERGE_HEAD exists)라는 에러가 발생했을 때 

1) git merge --abort 병합 취소 

2) git pull origin 내가 현재 위치해있는 Feature 브랜치 pull 받아와서 싱크 맞추기 

3) git pull origin 내가 pull을 받고자 하는 feature 브랜치 받아오기 

 

이런 식으로 해결할 수 있다.