GIT 충돌 해결

1843 단어
전언
일반적인git충돌의 해결일 뿐입니다. 더 복잡한 충돌이 해결되면 구글이 알아서 해결합니다. 버전 충돌을 해결하는 가장 중요한 것은 한 걸음 한 걸음 백업을 하는 것입니다.
원인
방금 만든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.

해결 방법 1
강제 push 사용 방법:
$ git push -u origin master -f 

이렇게 하면 원격 수정을 잃어버리는데, 일반적으로 취할 수 없는 것이다. 특히 여러 사람이 협동하여 개발할 때
해결 방법2
push 전에 원격 Repository를pull로 수정합니다
$ git pull origin master

$ git push -u origin master

해결 방법 3
3. merge 원격 및 로컬 수정 작업을 수행하지 않으려면 먼저 새 분기를 생성할 수 있습니다.
$ git branch [name]

그리고 푸시.
$ git push -u origin [name]

좋은 웹페이지 즐겨찾기