【git學習三】git基礎之git管理遠端倉庫

李博Garvin發表於2014-08-18

1.背景

    
          git管理遠端倉庫,本文以github為例。

2.管理遠端倉庫

        
       1.本地ssh認證,在github建立一個repo叫做ospaf-GetWordFre
     
     2.新增遠端倉庫,可以用git remote 命令實現,o是倉庫名,可以用git remote -v檢視
git remote add o git://github.com/jimenbian/ospaf-GetWordFre.git

     3.接著就可以向github上fetch或是push程式碼了。注意要選擇分支



git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/jimenbian/Maximum-Likelihood.git
git push -u origin master

     


/********************************

* 本文來自部落格  “李博Garvin“

* 轉載請標明出處:http://blog.csdn.net/buptgshengod

******************************************/


相關文章