[git] git pull 에러
github에 새로운 프로젝트를 푸시하기 위해서 아래와 같이 pull 명령어를 실행했더니 에러가 표시되었다. >> git pull origin master-- fatal: refusing to merge unrelated histories 이럴 경우 아래와 같이 옵션을 주어 pull 받도록 하자 git pull origin branchname --allow-unrelated-histories 이렇게 에러가 떨어지는 이유는 아래와 같다고 한다..... (시간날떄 해석을....) "git merge" used to allow merging two branches that have no common base by default, which led to a brand new history of an existi..