Git 파일 제출 오류: error: failed to push some refs to 'https://github.com/xxxx'...

간단한 설명:


실행 git push -u origin master 명령 오류
Fatal: HttpRequestException encountered.
Username for 'https://github.com': xxxx@qq.com
To https://github.com/xxxxxx/vue-webpack-mock-axios-vuex
! [rejected]        master -> master (non-fast-forward)
error: failed to push some refs to 'https://github.com/xxxx/vue-webpack-mock-axios-vuex'
hint: Updates were rejected because a pushed branch tip is behind its remote
hint: counterpart. Check out this branch and 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 창고에 readme 파일이 존재하기 때문에 제출할 때 충돌이 발생할 수 있습니다. 이때 선상의 파일을 보존하거나 선상의 파일을 버려야 합니다.

해결 방법:


1. 라인의 파일을 포기하면 밀어넣을 때 강제 밀어넣기를 선택하고 강제 밀어넣기는 다음 명령을 수행해야 합니다. git push origin master -f2. 온라인의readme 파일을 보존하려면 먼저 실행해야 합니다git pull origin master

좋은 웹페이지 즐겨찾기