Notice
Recent Posts
Recent Comments
-
[Github] master → main 강제 병합 본문
반응형
깃허브 repository를 새로 만들고 main이 아닌 다른 브랜치에 먼저 커밋을 했을 때,
아래와 같은 문제가 나오는 경우 해결 방법
"There isn't anything to compare. Nothing to compare, branches are entirely different commit histories"
git checkout master
git branch main master -f
git checkout main
git push origin main -f
반응형
'Git' 카테고리의 다른 글
[Github] 이미 커밋한 내용 다른 브랜치로 옮기기 (0) | 2022.11.21 |
---|---|
[Github] 이미 push한 폴더 삭제하는 방법 (0) | 2021.03.30 |
[Github] 잔디가 심어지지 않는 경우 (2) | 2021.03.24 |
Comments