git pull orgin master --allowed-unrelated-histories
이 명령어로 원격 저장소와 로컬 저장소의 병합 허용한다.
에러 해결
- git init
- git add .
- git pull orgin master --allowed-unrelated-histories
- git push -u orgin master
사실 커밋 과정에서 git pull orgin master 명령어만 차근차근 써주면 이 에러는 날 일이 없다.
강제로 merge시키는 방법이다.
git push origin +master 를 해도 된다.
728x90
'Github > git' 카테고리의 다른 글
Pull Reqeust 알아보기 (0) | 2021.12.23 |
---|---|
Git push, pull이 안되는 경우 ( fatal: refusing to merge unrelated histories ) (0) | 2021.12.12 |
github에 마크다운으로 쓰는 문법 (0) | 2021.11.27 |
[git] 커밋되지 않았거나 저장되지 않은 모든 변경 사항 취소 (0) | 2021.09.14 |
git 배우기 (0) | 2021.07.13 |