Git-git push 오류 [![rejected] master -> master(non-fast-forward)] 솔루션

1222 단어 #Git

문제 설명

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

좋은 웹페이지 즐겨찾기