您的位置:首页 > 其它

Git 的origin和master分析

2017-08-14 10:31 246 查看
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是独立(并行)的。Git显示的就是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 mybranch分支,即在origin repository里面查找mybranch,用一个空的去更新它,就相当于删除了)

git的服务器端(remote)端包含多个repository,每个repository可以理解为一个项目。而每个repository下有多个branch,此处各个branch的意义,可以参考这篇文章。"origin"就是指向某一个repository的指针。服务器端的"master"(强调服务器端是因为本地端也有master)就是指向某个repository的一个branch的指针。

这是服务器端(remote)的情况:



 

而在本地电脑(local)上:"master"就是指向刚刚从remote server传到本地的副本branch。

 

$git push A B:C     %其中A和C是分别remote端的一个repository的名字和branch的名字,B是本地端branch的名字

的意思是把本地的B推送到remotes/A/C下。当B=C时可以直接省略为:git push A B。比如:

"git push origin master:master" 可以直接省略为"git push origin master".
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: