[문제 발생]
develop 브랜치를 pull받아야하는데
feature브랜치의 커밋이 더 앞에 있을때
[해결]
git config pull.rebase false
- pull 할때 rebase를 하지 않고 merge 한다.
git config pull.rebase true
- pull할 때 rebase 한다.
git config pull.ff only
- fast-foward일때만 pull을 허용한다.
그 후에 conflict 해결하고 다시 커밋하면 됨
728x90
'Git' 카테고리의 다른 글
[Git] github 2fa 비번 까먹었을 때 password reset / authentication code (1) | 2022.04.09 |
---|---|
[Git] 커밋이 아니고 여기서 브랜치를 만들 수 없습니다. (0) | 2022.03.20 |
[Git] github branch rebase 하는 법 (0) | 2021.11.27 |
[Git] Github 깃허브 최신 커밋 삭제 (0) | 2021.11.24 |
[Git] git flow feature branch 관리하기 (0) | 2021.11.22 |