기타/Git, Github
[Git/Github] 깃(git) pull 실패
codingD
2019. 9. 9. 18:06
증상
You have not concluded your merge (MERGE_HEAD exists)
해결 방법
1. 머지 취소
git merge --abort
2. 충돌 해결
3. 다시 내려받기
git pull
4. 변경 내용 확인하고 커밋
git status
git commit -am "커밋내용"
커밋을 제대로하지 않을 경우 아래의 메세지가 뜰 수 있다
Pulling is not possible because you have unmerged files
5. 올리기
git push
git pull
git pull