로컬에서 개발한 프로젝트를 깃허브 사이트에서 만든 저장소로 push 할 때 발생하는 오류
push 전에 pull을 진행해주기
git pull origin master
그리고 git push origin master --allow-unrelated-histories
git push origin master --allow-unrelated-histories
깃은 두 프로잭트를 병합할 때 기본적으로 거부하는 것을 허용하게 해주는 명령어다.
홧팅..