git 오류 오류: failed to push some refs to

804 단어
error: failed to push some refs to 'XXXX'
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.

대략적인 뜻은 로컬과 원격 파일이 통합되어야 로컬의 새 파일을 업로드할 수 있다는 것이다.
 
해결 방법:
 
1. 먼저 끌어내리고 두 창고의 내용을 합친다
git pull --rebase origin master

2, 다시 업로드
git push -u origin master

 
직접 측정하면 효과가 있다.

좋은 웹페이지 즐겨찾기