GitHub

Git Pull실행시 Not possible to fast-forward 오류가 발생했을 경우의 대응

지오준 2021. 3. 1.
반응형

- git pull를 실행했을 때 Not possible to fast-forward, aborting라고 에러발생으로 로컬 원격 저장소와 동기화 할 수없는 경우의 대응 방법입니다.

- 원인

원격 저장소를 업데이트 한 후 git pull (= git fetch; git merge) 전에 로컬 저장소를 편집하여 commit 한 경우등에 발생하는것으로 파악

- 해결방법

$ git pull origin master --rebase #master branch인 경우

 

- 실행결과

From (remote repository의URL)
 * branch            master     -> FETCH_HEAD
Successfully rebased and updated refs/heads/master.
반응형

댓글