git pull을 했는데 fatal: refusing to merge unrelated histories 라는 메시지가 뜨고 git push가 되지 않는다 . 해결방법은 git pull origin 브런치명 --allow-unrelated-histories 한후 다시 commit 후에 push를 해주면 된다. --allow-unrelated-histories 는 존재하는 공통점이 없는 두개의 프로젝트를 병합하는 드문 상황에 사용된다고 한다. git에서는 서로 관련없는 history를 가지고있는 두 프로젝트를 병합할 때 기본적으로 거부하는데, 이것을 허용해 주는 명령어 라고 생각하면 된다.