본문 바로가기
ETC

[git] git 강제 pull 하기 (feat. git log, git fetch) hint: Please, commit your changes before merging. fatal: Exiting because of an unresolved conflict.

by 노반장 2021. 10. 6.

여러 곳에서 작업을 할 때, remote의 형상을 그냥 땡길 필요가 생긴다. (현재 브랜치의 형상이 필요없을 때)

이때 간혹 아래와 같이 confilct, merge 에러가 발생한다.

해결방법

 step1. git fetch --all ( commit 내역(repository) 최신화 )

 step2. git reset --hard origin/master ( head가 최신을 가르키도록 )

 step3. git pull 

 

 

댓글