728x90
반응형

git push error

hint: Updates were rejected because the remote contains work that you do
hint: not have locally. This is usually caused by another repository pushing
hint: to the same ref. You may want to first integrate the remote changes
hint: (e.g., 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.

 

 

변경사항을 통합하라는 힌트를 확인할 수 있음

그러나 git pull origin 브랜치명 명령어 입력하면 Not possible to fast-forward, aborting 이런 에러가 또 뜸

이런 경우 아래의 순서로 브랜치를 통합하고 다시 push 하면 됨

 


1. git pull origin 브랜치명 --ff-only
2. 충돌난 파일 찾아가서 충돌 해결
3. git add 충돌해결한파일
4. git commit -m "충돌 해결"
5. git push origin 해당브랜치명 =>git push origin feature/addOrder

반응형
복사했습니다!