refusing to merge unrelated histories

git pull origin master

깃 풀을 실행해서 성공적인 결과가 리턴되길 바랬으나…

fatal: refusing to merge unrelated histories

오류가 ! 뚜둔!

git pull origin branchname --allow-unrelated-histories

위 명령어를 실행하면 해결된다.
기본적으로 상관없는 브랜치끼리 머지하는 것을 허용하지 않는데
‘–allow-unrelated-histories ‘ 옵션으로 허용을 해줘서 오류를 발생하지 않게 하는 것이다.