1. 程式人生 > >githup解決在本地倉庫與遠端倉庫不一致問題

githup解決在本地倉庫與遠端倉庫不一致問題

直接在githup網站上修改了檔案,後面在向githup提交檔案的時候提示:

To https://github.com/maxinehehe/Jobble_scrapy.git
 ! [rejected]        master -> master (fetch first)
error: 無法推送一些引用到 'https://github.com/maxinehehe/Jobble_scrapy.git'
提示:更新被拒絕,因為遠端倉庫包含您本地尚不存在的提交。這通常是因為另外
提示:一個倉庫已向該引用進行了推送。再次推送前,您可能需要先整合遠端變更
提示:(如 'git pull ...')。

提示:詳見 'git push --help' 中的 'Note about fast-forwards' 小節。

解決辦法:

先pull遠端倉庫,然後和本地倉庫合併,最後提交即可。
[email protected]:~/ArticelSpider$  git pull origin 
[email protected]:~/ArticelSpider$
  git merge origin master
[email protected]:~/ArticelSpider$
  git push origin