개발하는 자몽

[Git Error] fatal: It seems that there is already a rebase-merge directory, ... 본문

Git

[Git Error] fatal: It seems that there is already a rebase-merge directory, ...

jaamong 2023. 4. 15. 18:44

커밋을 합치려고 git rebase를 하다가 아래 오류가 발생했다.

fatal: It seems that there is already a rebase-merge directory, 
and I wonder if you are in the middle of another rebase.
If that is the case, please try
		git rebase (--continue | --abore | --skip)
If that is not the case, please
		rm -rf ".git/rebase-merge"
and run me gain.
I am stopping in case you still have something valuable there.

 

 

rebase를 하다가 예상치 못하게 vcs를 종료하면 발생한다고 한다. 분명 `:wq` 하고 종료한 것 같았는데, 아니었나 보다... 

 

해결 방법은 아래 명령어를 입력하여 rebase를 그만두고 다시 rebase를 하면 된다.

$ git rebase --quit
Comments