git branch merge 하던중 생긴 문제..
git에서 이질적인 두 프로젝트를 병합할때 생기는 문제
아래 코드를 입력하면 해결이 완료된다.
git merge master --allow-unrelated-histories
branch1에다가 branch2합치는 도중에 아래와 같은 문제가 발생하였다,
이유는 내가 작업한 공간에서 branch2가 branch1에 이미 merge할꺼를
했기때문이다.
아래 코드를 입력하면 해결이 완료된다.
git checkout branch2
git pull
git checkout branch1
git merge branch2
완료하면 해결 끝