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