refusing to merge unrelated histories
-
git push error [failed to push some refs to : <remote url>]맨땅에코딩/git 2020. 9. 9. 10:23
1.git push origin master 명령어를 통해서 push할때 에러발생 failed to push some refs to : 2. hint에서 push 전에 git pull을 먼저 해보라고함 git pull origin master fatal : refusing to merge unrelated histories 3. 처음 local 프로젝트를 remote 프로젝트를 병합할때 거부하는 경우 --allow-unrelated-histories 옵션 사용 git pull origin master --allow-unrelated-histories 요약 " 3>2>1 순으로 git 명령어 사용 "