push 로컬 코드가github에 도착하는 중 오류 발생

1284 단어
방금 만든github 버전 라이브러리입니다.push 코드에서 오류가 발생했습니다.
$ git push -u origin master
To [email protected]:******/Demo.git
 ! [rejected]        master -> master (non-fast-forward)
error: failed to push some refs to '[email protected]:******/Demo.git'
hint: Updates were rejected because the tip of your current branch is behind
hint: its remote counterpart. Merge the remote changes (e.g. 'git pull')
hint: before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.

인터넷에서 검색한 결과 원격 Repository와 로컬 Repository의 충돌로 인해 발생한 것이고, 나는 버전 라이브러리를 만든 후 github의 버전 라이브러리 페이지에서 README 만들기를 눌렀다.md 파일의 단추가 설명 문서를 만들었지만 로컬에pull이 없습니다.이렇게 해서 버전 충돌 문제가 생겼다.
다음과 같은 해결 방법이 있습니다.
1. 강제push를 사용하는 방법:
$ git push -u origin master -f 
이렇게 하면 원격 수정을 잃어버릴 수 있는데, 일반적으로 취할 수 없는 것이다. 특히 여러 사람이 협동하여 개발할 때이다.
2. push 전에 원격 Repository를pull로 수정
$ git pull origin master
$ git push -u origin master
3. merge 원격 및 로컬 수정 작업을 수행하지 않으려면 먼저 새 분기를 생성할 수 있습니다.
$ git branch [name]
그리고 푸시.
$ git push -u origin [name]
 
참조:
http://stackoverflow.com/questions/10298291/cannot-pushto-github-keeping-saying-need-merge
전재 대상:https://www.cnblogs.com/daemon369/p/3204646.html

좋은 웹페이지 즐겨찾기