1.我們新建一個了java項目後,需要提交到github進行版本控制
2.如果此時github中的倉庫不為空,我們在本地使用git push提交時會報以下錯誤,
! [rejected] master -> master (non-fast-forward)
原因:github倉庫中已經存在本地項目中不存在的文件,發生了沖圖
解決方法:先將github倉庫中的文件全部pull下來,此時由於這是2個不相關的倉庫,直接使用git pull 會報錯:
fatal: refusing to merge unrelated histories
解決方法:在pull指令後加上--allow-unrelated-histories,即最終命令為:git pull --allow-unrelated-histories
3.pull了之後,再次使用push即可成功提交到遠端倉庫
GitHub 教程系列文章:
通過GitHub創建個人技術博客圖文詳解 http://www.linuxidc.com/Linux/2015-02/114121.htm
GitHub 使用教程圖文詳解 http://www.linuxidc.com/Linux/2014-09/106230.htm
Git 標簽管理詳解 http://www.linuxidc.com/Linux/2014-09/106231.htm
Git 分支管理詳解 http://www.linuxidc.com/Linux/2014-09/106232.htm
Git 遠程倉庫詳解 http://www.linuxidc.com/Linux/2014-09/106233.htm
Git 本地倉庫(Repository)詳解 http://www.linuxidc.com/Linux/2014-09/106234.htm
Git 服務器搭建與客戶端安裝 http://www.linuxidc.com/Linux/2014-05/101830.htm
Git 概述 http://www.linuxidc.com/Linux/2014-05/101829.htm
分享實用的GitHub 使用教程 http://www.linuxidc.com/Linux/2014-04/100556.htm
GitHub 的詳細介紹:請點這裡
GitHub 的下載地址:請點這裡