코딩기록

git 강제 push 강제푸쉬 / 강제 pull 강제 풀 본문

카테고리 없음

git 강제 push 강제푸쉬 / 강제 pull 강제 풀

뽀짝코딩 2022. 5. 22. 21:09
728x90

강제 푸쉬

git push -u origin +master

 

 

강제 풀

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

git fetch --all
git reset --hard origin/master
git pull origin master

 

 

 

 

참고

https://doozi316.github.io/errorlog/2019/09/30/error1/

반응형
Comments