Git merge 를 수행하는경우 conflict 가 나는 경우가 있다. 이때는 일일이 Conflict 를 수정해도 되지만, 현재 branch 나 merge 대상인 branch 의 내용을 바로 적용하면 이런 conflict 를 일괄적으로 수행하게 할 수 있다.
# git merge -X<option> <branch>
# option = ours, theirs 등등
# ex)
# -Xtheris 로 실행하면 현재 branch 와 conflict 가 발생할경우 otherBranch 브랜치 내용으로 적용
$ git merge -Xtheris otherBranch
참고
https://git-scm.com/book/ko/v2/Git-%EB%8F%84%EA%B5%AC-%EA%B3%A0%EA%B8%89-Merge
https://git-scm.com/docs/merge-strategies
'Git' 카테고리의 다른 글
[Git] Git clone 시에 remote: Repository not found 발생시 (0) | 2022.01.07 |
---|---|
[Git] Git branch 및 history 를 포함한 zip 파일 생성 (0) | 2021.06.15 |
[Git] Gerrit Reviewer 자동 등록 스크립트 (0) | 2016.12.21 |
[Git] 기본설정 (0) | 2016.12.21 |
[Git] You are in the middle of a cherry-pick -- cannot amend 해결방법 (0) | 2015.12.22 |