###문제 : git pull origin feature 시, fatal: Not possible to fast-forward, aborting. 오류 발생
해결 방법:
git pull --rebase origin feature 명령어 사용하지만 다음과 같은 오류 발생
error: cannot pull with rebase: You have unstaged changes.
error: please commit or stash them.
커밋 또는 stash 진행
git stash 사용 (다른 개발자의 작업이 포함된 상황일 수 있음)git status 명령어로 충돌 확인 후 수정cat {파일명}.java로 파일 확인vim {파일명}.java로 충돌 해결i 입력 후 수정 후에는 ESC -> :wq로 저장 및 종료git add {파일명}.java
git commit -m "메시지"
다시 git pull 수행
Already up to date. 확인 후 작업 계속 진행 가능