본문 바로가기
● IDE, System/Git

[Git] fatal: refusing to merge unrelated histories 해결

by 0ver-grow 2021. 2. 27.
반응형

에러발생 : fatal: refusing to merge unrelated histories

 

해결 방법 : push 전에 먼저 pull을 해서 프로젝트를 병합해주면 해결

 

refusing to merge unrelated histories

 

만약 위 방법이 안된다면

하단 방법으로 진행

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

브런치명이 master라면 하단을 입력

git pull origin master --allow-unrelated-histories

 

도움 : gdtbgl93.tistory.com/63

 

 

반응형