반응형

git pull error , Please, commit your changes or stash them before you can merge.Aborting

 

깃 풀을 실행 했을때 풀이 안되는 오류가 발생한다 . 

git pull error , Please, commit your changes or stash them before you can merge.Aborting

다른 사람과의 commit이 충돌나기 때문인데 

 

이떄 git stash를 실행해준다 현재 본을 백업하고 브랜치의 상태를 풀 받는것인데 

 

일단 에러의 원인은 pull 로 가져오려는 소스와 현재 저장된 코드와 재대로 처리가 되지 않아서 나는 에러 입니다.
이때 stash 는 현재 디렉토리의 파일을 임시로 백업하고 깨끗한 상태로 돌립니다.

 

git pull error , Please, commit your changes or stash them before you can merge.Aborting: Please tell me who you are.

Please tell me who you are.

라는 에러가 발생할 경우 아래 

 

git config --global user.email "you@example.com" 

git config --global user.name "Your Name"

 

라는 부분과 같이 . 유저의 이메일과 이름을 설정해주고 다시 

 git stash

실행. 

후에 완료가 된다면 

다시 git pull실행 

반응형

+ Recent posts