백지부터 시작하는 이세계 코딩 생활

git desktop > Error and Crush 본문

Git desktop/Error & Crush

git desktop > Error and Crush

조아덕 2020. 8. 20. 17:25

pull 하는 과정에서 발생한 에러 >> 

changes or stash them before you merge.

해결방법 >>

# git stash && git pull origin master && git stash pop

또는 일일이 적어준다 >>

git stash
git pull origin master
git stash pop

<Error> Pull is not possible because you have unmerged files

 

git commit -am '커밋메시지'

이렇게 적어주고 github desktop 에서 pull 처리 해주니 작동한다.


Ref. 

https://goddaehee.tistory.com/253

 

[Git (6)] git pull 에러 해결방법 (Your local changes to the following files would be overwritten by merge )

[Git (6)] git pull 에러 해결 (Your local changes to the following files would be overwritten by merge ) 안녕하세요. 갓대희 입니다. 이번 포스팅은 [ git pull 충돌 에러 해결방법 ] 입니다. : ) 1...

goddaehee.tistory.com


<Error> Pull > unable to pull when changes are presnet on your branch

>> clone 다시 받음.

 

<Error> Pull > Conflict(충돌) 났을 때 강제로 Pull 하기.

https://frontdev.tistory.com/entry/GIT-Conflict%EC%B6%A9%EB%8F%8C-%EB%82%AC%EC%9D%84-%EB%95%8C-%EA%B0%95%EC%A0%9C%EB%A1%9C-Pull-%ED%95%98%EA%B8%B0

 

[GIT] Conflict(충돌) 났을 때 강제로 Pull 하기.

Git Conflict Git conflict가 나면 당황부터 하게 됩니다. ㅎㅎ 간단한 방법이 있어서 공유해봐요. 1 2 3 git fetch --all git reset --hard origin/master git pull origin master cs 제가 수정한 파일이..

frontdev.tistory.com

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

 

 

#

Comments