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
반응형
'형상관리 > Git' 카테고리의 다른 글
[Git] git stash 명령어 (0) | 2023.06.21 |
---|---|
[Git] 충돌 오류로 stash pop 안되는 경우 (0) | 2023.06.13 |
[Git Error] pull request 한 이후 충돌 해결 방법 (0) | 2023.04.05 |
[Git Error] Can’t automatically merge. Don’t worry, you can still create the pull request. 해결 방법 (0) | 2023.04.04 |
[GitHub] 원격 저장소 파일 삭제하기 (0) | 2023.03.15 |