본문 바로가기
Development/Git

[Git] git conflict(충돌)시 강제로 pull 하기

by 대범하게 2022. 12. 7.
반응형

💡 git conflict(충돌)시 강제로 pull 하기 💡

git pull을 하지 않고 push를 했을 경우나 여러 버전이 섞이면서 충돌나는 경우가 자주(?) 있었다. 😓

local의 버전이 없어져도 괜찮을 경우 강제로 pull하는 명령어이다. 

git fetch --all
git reset --hard origin/master
git pull origin master
반응형