git fatal 해결하기

j_wisdom_h·2024년 3월 16일
0

Github

목록 보기
2/2

fatal:refusing to merge unrelated histories

git pull origin 브런치명 --allow-unrelated-histories

--allow-unrelated-histories
이미 존재하는 두 프로젝트의 기록(history)을 저장하는 드문 상황에 사용된다.
즉, git에서는 서로 관련 기록이 없는 이질적인 두 프로젝트를 병합할 때 기본적으로 거부하는데, 이것을 허용해 주는 것이다.

You have not concluded your merge (MERGE_HEAD exists)

fatal: Exiting because of unfinished merge.

  1. 머지 취소
    git merge --abort
  2. 충돌 해결
  3. 병합을 추가 하고 커밋
    git status
    git commit -am "커밋 내용"
profile
뚜잇뚜잇 FE개발자

0개의 댓글