Commands/git + github

4. merge conflict 해결

꼰대코더 2025. 2. 27. 01:23

merge conflict 의 시나리오

1. 동일 화일을 변경해서 merge 하는 경우

        master 에서 issue2 와 issue3 로 분기해서 작업                  먼저 issue2를 merge하고나서 issue3를 merge하는 경우

$ git checkout master
Switched to branch 'master'
$ git merge issue2
Updating b2b23c4..8f7aa27
Fast-forward
 myfile.txt |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)
$ git merge issue3
   Auto-merging myfile.txt
   CONFLICT (content): Merge conflict in myfile.txt
   Automatic merge failed; fix conflicts and then commit the result.

 

myfile.txt 를 같은 행에 issue2 에서는 "말없이 고이 보내 드리우리다" 를 issue3에서는 "죽어도 아니 눈물 흘리우리다" 수정

나 보기가 역겨워
가실 때에는
<<<<<<< HEAD
말없이 고이 보내 드리우리다
=======
죽어도 아니 눈물 흘리우리다
>>>>>>> issue3

 

직접 아래와 같이 수정 

나 보기가 역겨워
가실 때에는
말없이 고이 보내 드리우리다
죽어도 아니 눈물 흘리우리다

 

다시한번 commit

git add myfile.txt
$ git commit -m "issue3 merge"
# On branch master
nothing to commit (working directory clean)

 

최종적으로 master Head 는 아래와 같다.

 

 

2. rebase 하는 경우 (동일 화일을 변경)

 

issue2는 master 에 merge된 상태에서 

git checkout issue3
Switched to branch 'issue3'
git rebase master

issue2 를 흡수한 상태로 issue3 분기로의 개발을 계속 하겠다는 의미이다.

이때 merge된 issue2와 동일 화일(myfile.txt)을 수정하였다면 1 에서와 같은 에러가 발생하는데 추가적으로 아래와 같은 메세지가 추가된다.

...
When you have resolved this problem run "git rebase --continue".
If you would prefer to skip this patch, instead run "git rebase --skip".
To check out the original branch and stop rebasing run "git rebase --abort".

 

1 에서와 같이 화일을 수정한 후 commit 가 아니라 rebase ---continue 를 실행한다.

git add myfile.txt
git rebase --continue

 

이후 issue3 의 작업이 끝나면 master 로 checkout 하여 issue3 를 merge 하면 된다.

'Commands > git + github' 카테고리의 다른 글

5. 고급 git commands  (0) 2025.02.27
3. bug fix 생성  (0) 2025.02.05
2. tag & release  (0) 2025.02.05
1. git - 정상적인 처리  (1) 2025.02.05
0. git 기초  (0) 2025.02.05