天天看點

關于github

https://github.com/marry1234/test      
關于github的建立及庫的創立的心得      

開始使用git:

  1. 在本機上安裝git,http://progit.org/book/
  2. 使用github充當遠端伺服器,托管本地代碼:www.github.com
  3. 在github上注冊好帳号,建立一個倉庫,就可以将本地倉庫托管上去了
  4. 剩下的就是從原理上學習git,熟練掌握git的常用指令,不懂的就git --help。

git常用指令:

  • git config :配置git
  • git add:更新working directory中的檔案至staging area。git add .更新所有的檔案
  • git commit:送出staging area中的檔案至git repository中。git commit -m 'message'
  • git status:檢視狀态
  • git diff:檢視改動情況
  • git remote:檢視遠端伺服器别名,加上-v顯示url資訊
  • git remote add server_url local-alias:添加遠端伺服器
  • git clone project_url local_alias:拷貝項目到本機中
  • git push server_url/local-alias:更新遠端伺服器倉庫
  • git pull server_url/local-alias:更新本地伺服器倉庫