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//아니요. 없으면 안 돼요.

좋은 웹페이지 즐겨찾기