Git 첫 push 오류
949 단어 프로젝트 관리
$ git push -u origin master
To [email protected]:xxx/xxx.git
! [rejected] master -> master (fetch first)
error: failed to push some refs to '[email protected]:xxx/xxx.git'
hint: Updates were rejected because the remote contains work that you do
hint: not have locally. This is usually caused by another repository pushing
hint: to the same ref. You may want to first integrate the remote changes
hint: (e.g., 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.
git 초기화 후 push에서 github로 오류 알림
이유:readme를 추가하지 않았습니다.txt
해결 방법:
방법 1,github 프로젝트에서 수동으로 README를 추가합니다.txt, 로컬 지점 내pull 최신
방법 2, 로컬vim에서 새로운readme.txt 파일, 내용 입력,commit 후 다시push togithub
추가:
원격 창고에 새 파일이 추가되었을 수도 있습니다. 로컬은 최신 원격 창고 버전 번호가 아닙니다.
원격 창고를 로컬로 옮겨야 돼요.
git pull --rebase
or
git pull --rebase//아니요. 없으면 안 돼요.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
리팩터인가, 리라이트인가. 그것을 어떻게 판단할까. (레거시 소프트웨어 개선 가이드)리팩터인가, 재작성 (개조)? 이 큰 주제에 대해이 책에서 언급되었습니다....
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.