Notice
Recent Posts
Recent Comments
Link
«   2025/01   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
Tags
more
Archives
Today
Total
관리 메뉴

방카@Dev

[Git]에러 해결 - "fatal : refusing to merge unrelated histories" 본문

Git

[Git]에러 해결 - "fatal : refusing to merge unrelated histories"

방카킴 2024. 6. 10. 09:32

 

집에서 작업한 코드를 학원 노트북으로 불러오려고 c드라이브에 폴더를 생성하고 git clone을 했는데 오류 발생. 

 

현재 github에 main 브랜치는 비어있고, sub 브랜치에만 코드가 들어있어서 sub 브랜치를 당겨오려고 했던게 에러의 원인인 것 같다.

 

<해결방법>

git pull origin gunkim(서브브런치이름) --allow-unrelated-histories

 

 

해결완료!