上傳項目到gitHub

來源:互聯網
上載者:User

標籤:倉庫   help   分支   info   終端   hang   may   image   bubuko   

上傳項目到gitHub

建立好後開始提交本地項目代碼

選中VCS選中圖中的按鈕

然後再選中Src點中add按鈕

然後點中commit Directory後開啟終端進行項目根目錄下鍵入以下 命令:git remote add origin [email protected]:codegeekgao/Test.git(這裡我寫的自己的github地址,這裡可以改成你自己的github項目)git push -u origin master //將本地倉庫的東西提交到地址是origin的地址,master分支下 
可能出現的報錯異常

提示出錯資訊:fatal: remote origin already exists. 解決辦法如下:

然後再次輸入git remote add origin [email protected]:codegeekgao/Test.git
git push -u origin master
然後會報以下錯誤:

! [rejected] master -> master (fetch first)error: failed to push some refs to '[email protected]:qzmly100/repository-.git'hint: Updates were rejected because the remote contains work that you dohint: not have locally. This is usually caused by another repository pushinghint: to the same ref. You may want to first integrate the remote changeshint: (e.g., 'git pull ...') before pushing again.hint: See the 'Note about fast-forwards' in 'git push --help' for details.

這是因為:
遠程分支上存在本地分支中不存在的提交,往往是多人協作開發過程中遇到的問題,可以先fetch再merge,也就是pull,把遠程分支上的提交合并到本地分支之後再push。
如果你確定遠程分支上那些提交都不需要了,那麼直接git push origin master -f,強行讓本地分支覆蓋遠程分支.

上傳項目到gitHub

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.