Git-git push 오류 [![rejected] master -> master(non-fast-forward)] 솔루션
문제 설명
git push -u origin master
To https://github.com/XXX/XXX.git
! [rejected] master -> master (non-fast-forward)
error: failed to push some refs to 'https://github.com/XXX/XXX.git'
hint: Updates were rejected because the tip of your current branch is behind
hint: its remote counterpart. Integrate the remote changes (e.g.
hint: 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.
문제 분석
Git 창고에 이미 일부 코드가 있기 때문에 직접 코드를 덮어쓰는 것을 허락하지 않습니다.
원격 창고와 로컬 창고는 차이가 있습니다.
솔루션
메서드1: 동기화
1,git pull origin master --allow-unrelated-histories//원격 창고와 로컬을 동기화하여 차이를 없애다
2. 해당 파일을 다시 add 및commit
3、git push origin master
4, 이때 바로 업로드 가능
방법2:강추
즉, 강력한 덮어쓰기 방식을 이용하여git 창고의 내용을 로컬 코드로 대체합니다
git push -f origin master
방법 3:
git 물건fetch를 로컬로 옮기고merge 다음에push
git fetch
git merge
참고문
https://blog.csdn.net/xieneng2004/article/details/81044371
https://blog.csdn.net/zyz00000000/article/details/84402189
https://www.jianshu.com/p/f26c71d05e44
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Rails Turbolinks를 페이지 단위로 비활성화하는 방법원래 Turobolinks란? Turbolinks는 링크를 생성하는 요소인 a 요소의 클릭을 후크로 하고, 이동한 페이지를 Ajax에서 가져옵니다. 그 후, 취득 페이지의 데이터가 천이 전의 페이지와 동일한 것이 있...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.