git push 오류
1441 단어 Git
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]
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
브랜치 병합(Visual studio 2017 사용)의 계속입니다. 기능 추가를 위한 브랜치를 작성하고, 기능 추가한 후, 그 내용을 develop 브랜치에 병합해 봅니다. 1. 새롭게 「add1」라고 하는 브랜치를 작성 2. 브랜치 "add1"을 선택한 상태에서 M...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.