차곡차곡

[Error] git commit 에러 (Committing is not possible because you have unmerged files) 본문

Github

[Error] git commit 에러 (Committing is not possible because you have unmerged files)

sohy 2022. 5. 15. 00:47

문제 상황

git add . 후 git commit 해줬더니 해당 에러 발생. 이는 로컬과 원격에 같은 파일이 있는데 그 로컬에서 아직 merge가 되지 않았다고 인식했기 때문이다.

 

문제 해결

git commit -am '커밋메시지'

 

 

참고 자료 : https://velog.io/@nsunny0908/git-GitCommitting-is-not-possible-because-you-have-unmerged-files

Comments