1. 程式人生 > >Git 的origin和master分析

Git 的origin和master分析

首先要明確一點,對Git的操作是圍繞3個大的步驟來展開的(其實幾乎所有的SCM都是這樣)

1.     從git取資料(git clone)

2.     改動程式碼

3.     將改動傳回git(git push)

這3個步驟又涉及到兩個repository,一個是remote repository,再遠端伺服器上,一個是local repository,再自己工作區上。其中

1, 3兩個步驟涉及到remote server/remote repository/remote branch,

2涉及到local repository/local branch。git clone 會根據你指定的remote server/repository/branch,拷貝一個副本到你本地,再git push之前,你對所有檔案的改動都是在你自己本地的local repository來做的,你的改動(local branch)和remote branch是獨立(並行)的。Gitk顯示的就是local repository。

在clone完成之後,Git 會自動為你將此遠端倉庫命名為origin(origin只相當於一個別名,執行git remote –v或者檢視.git/config可以看到origin的含義),並下載其中所有的資料,建立一個指向它的master 分支的指標,我們用(遠端倉庫名)/(分支名) 這樣的形式表示遠端分支,所以origin/master指向的是一個remote branch(從那個branch我們clone資料到本地),但你無法在本地更改其資料。

同時,Git 會建立一個屬於你自己的本地master 分支,它指向的是你剛剛從remote server傳到你本地的副本。隨著你不斷的改動檔案,git add, git commit,master的指向會自動移動,你也可以通過merge(fast forward)來移動master的指向。

$git branch -a (to show all the branches git knows about)

* master

remotes/origin/HEAD -> origin/master

remotes/origin/master

$git branch -r (to show remote branches git knows about)

origin/HEAD -> origin/master

origin/master

可以發現,master就是local branch,origin/master是remote branch(master is a branch in the local repository. remotes/origin/master is a branch named master on the remote named origin)

$git diff origin/master master (show me the changes between the remote master branch and my master branch).

需要注意的是,remotes/origin/master和origin/master的指向是相同的

$git diff origin/master remotes/origin/master

git push origin master

origin指定了你要push到哪個remote

master其實是一個“refspec”,正常的“refspec”的形式為”+<src>:<dst>”,冒號前表示local branch的名字,冒號後表示remote repository下 branch的名字。注意,如果你省略了<dst>,git就認為你想push到remote repository下和local branch相同名字的branch。聽起來有點拗口,再解釋下,push是怎麼個push法,就是把本地branch指向的commit push到remote repository下的branch,比如

$git push origin master:master (在local repository中找到名字為master的branch,使用它去更新remote repository下名字為master的branch,如果remote repository下不存在名字是master的branch,那麼新建一個)

$git push origin master (省略了<dst>,等價於“git push origin master:master”)

$git push origin master:refs/for/mybranch (在local repository中找到名字為master的branch,用他去更新remote repository下面名字為mybranch的branch)

$git push origin HEAD:refs/for/mybranch (HEAD指向當前工作的branch,master不一定指向當前工作的branch,所以我覺得用HEAD還比master好些)

$git push origin :mybranch (再origin repository裡面查詢mybranch,刪除它。用一個空的去更新它,就相當於刪除了)