git push 오류

1441 단어 Git
방금 만든 github 버전 라이브러리,push 코드에서 오류가 발생했습니다.
 o https://[email protected]/backend/weather/weather.git
 ! [rejected]        master -> master (non-fast-forward)
error: failed to push some refs to 'https://[email protected]/backend/weather/weather.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.

다음과 같은 몇 가지 해결 방법이 있습니다.
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]
그리고 push
$ git push -u origin [name]

좋은 웹페이지 즐겨찾기