본문 바로가기
카테고리 없음

git origin/master refusing to merge unrelated histories 오류 발생

by 어컴띵 2019. 7. 10.

git pull 실행시 다음과 같은 오류 발생

 

 branch master -> FETCH_HEAD = [up to date] master -> origin/master refusing to merge unrelated histories

 

아래 명령으로 pull 실행

git pull origin branchname --allow-unrelated-histories

출처: https://cpdev.tistory.com/51 [하루하나]

 

다시 오류 발생 하여 다음 명령어로 처리

 git merge origin/master --allow-unrelated-histories

출처: https://stackoverflow.com/questions/38255655/trying-to-pull-files-from-my-github-repository-refusing-to-merge-unrelated-his