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


推送到遠程倉庫

git push -u origin master

出現如下錯誤

 ! [rejected]        master -> master (fetch first)
error: failed to push some refs to 'git@github.com:qiyuebuku/WxRobot.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.

解決方法就是在push到遠程服務器之前,先將本地倉庫的變化連接到遠程倉庫主分支

git pull origin master 

git push -u origin master //把本地倉庫的文件推送到遠程倉庫wen

  

問題解決


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM