git fetch origin two //獲取遠程倉庫的two html
fetch完畢後,最後本身進行對比下:git log -p two origin/three //git log local remote git
而後你須要進行合併(將遠程倉庫合併到遠程倉庫) :git merge origin/two //將遠程倉庫origin/two合併到當前默認本地庫的分支 fetch
//這有這個樣子,你的本地倉庫才發生了改變 spa
git push origin two 將本地倉庫的two上傳到遠程的two 等同於git push origin two:two 來實現相同的效果,若是遠程倉庫不存在,git 會自動去建立。 .net
記住修改完文件後必定要git commit file,不然會push會沒有任何的放映。
htm
參考網址:http://git.oschina.net/progit/3-Git-%E5%88%86%E6%94%AF.html#3.5-%E8%BF%9C%E7%A8%8B%E5%88%86%E6%94%AF three
http://www.xuebuyuan.com/2071482.html rem