바르고 뜨겁게

[ 깃허브 ] pull 충돌 에러 : Please commit your changes or stash them before you merge. 본문

FullStack

[ 깃허브 ] pull 충돌 에러 : Please commit your changes or stash them before you merge.

RightHot 2019. 9. 22. 02:54

깃허브 pull 충돌 에러

Please commit your changes or stash them before you merge.


  1. git pull [ 레파짓 주소 ]

  1. git stash

    • 내가 수정한 소스를 저장하고 이전 커밋 시점으로 되돌린다.

  2. git pull [ 레파짓 주소 ]

    • 다시 깃에서 소스를 내려받는다.

  3. git stash pop

    • 내가 수정한 소스와 내려받은 소스가 merge 된다.

  4. 소스 수정

  5. git commit -m ""

    • 커밋

  6. git push origin master


Comments