개발 공부중

Git error: Pulling is not possible because you have unmerged files 해결하기 본문

GIT

Git error: Pulling is not possible because you have unmerged files 해결하기

개발자 leelee 2023. 1. 17. 00:50
$ git pull
error: Pulling is not possible because you have unmerged files.
hint: Fix them up in the work tree, and then use 'git add/rm <file>'
hint: as appropriate to mark resolution and make a commit.
fatal: Exiting because of an unresolved conflict.
error: Pulling is not possible because you have unmerged files.

merge되지 않은 파일이 있어서 pull할 수 없다는 내용의 오류

내 경우는 로컬(내 pc)에는 있는 파일이 원격(깃허브)에는 다른 사람이 삭제한 상태로 main에 merge되어 있었다.

 

 

$ git commit -am "커밋 메시지"

마지막 커밋을 수정해주니 해결됐다. 커밋 자체가 수정되면서 추가로 수정사항을 밀어넣을 수 있다.

과거의 커밋을 변경할 때 주의해야 한다. Rebase와 같이 이미 Push 한 커밋은 수정하면 안 된다고 한다.

 

$ git commit -am "커밋 메시지"
[브랜치명 0c55fba] error solved
 1 file changed, 264 insertions(+)
 create mode 100644 경로/파일명.java

 

 

Comments