320x100
320x100
Git hub에서 push 할 때
fatal: refusing to merge unrelated histories 이라는 오류가 발생하면
git pull origin 브랜치 --allow-unrelated-histories
git add .
git commit -m '코멘트'
git push -u origin 브랜치
하면 정상적으로 push가 된다
다만
--allow-unrelated-histories 옵션으로 인해
history까지 저장되며 소스코드에 변경사항이 그대로 올라간다
때문에 새로운 수정사항이 있는 소스코드를 따로 백업하고
이 작업을 한 뒤에
소스코드 들의 수정시간을 다시 변경하여
다시 push하는 것을 권장한다
300x250
728x90
'Devops > Git' 카테고리의 다른 글
git 이전 커밋 복구하는 방법 [git push -u --force 로 잘못 날린 commit 살리기] (0) | 2021.08.17 |
---|---|
VS Code를 이용한 Git conflict 해결방법 (0) | 2021.08.06 |
git add 취소 / commit 취소 / 오류 해결 방법 (0) | 2021.07.18 |
github Branching 하는 법 (깃허브 브랜치 관리법) (0) | 2021.07.18 |
Git Hub 초기세팅 (0) | 2020.12.22 |