git远程分支

2018-01-16  本文已影响40人  学习编程王同学

查看远程分支

现在我们已经有一些和远程分支打交道的经验了,比如曾经使用了git pushgit pull

怎么查看远程分支呢?

使用git branch可以查看本地的分支,-v选项可以显示更多的信息,-vv选项可以查看更详细的信息:

$ git branch
* master
$ git branch -v
* master 11f0f7a [ahead 8] merge iss1
$ git branch -vv
* master 11f0f7a [origin/master: ahead 8] merge iss1

git告诉我们,我们现在在master分支,它跟踪origin/master远程分支,并且比该远程分支前进了8个提交对象。

使用git branch -r选项可以仅仅查看远程分支:

$ git branch -r 
  origin/master
$ git branch -r -v
  origin/master 57b75e6 Add GitHub description.

或者使用git remote show亦可:

$ git remote 
origin
$ git remote -v
origin  https://github.com/mwanggh/myFirstGit.git (fetch)
origin  https://github.com/mwanggh/myFirstGit.git (push)
$ git remote show origin
* remote origin
  Fetch URL: https://github.com/mwanggh/myFirstGit.git
  Push  URL: https://github.com/mwanggh/myFirstGit.git
  HEAD branch: master
  Remote branch:
    master tracked
  Local branch configured for 'git pull':
    master merges with remote master
  Local ref configured for 'git push':
    master pushes to master (fast-forwardable)

那么究竟什是远程分支呢?远程分支当然不是本地的分支了。这个例子中的origin/master其实是一个远程跟踪分支,它跟踪https://github.com/mwanggh/myFirstGit.gitmaster分支,其中origin就表示远程项目的地址,master表示远程项目的分支。

所以说,远程跟踪分支其实是一个远程分支的索引,通过它可以连接到远程分支。它的操作都是git自动操作,用户无法直接的操纵它。

克隆远程分支

如果要直接从远程克隆一个分支到本地,使用git clone命令:

git clone [remote-specification]

其中的remote-specification代表远程仓库的地址,比如想要克隆本文的项目地址,可以使用下面的命令:

$ git clone https://github.com/mwanggh/myFirstGit.git

它会做以下几件事:

结果是我们有了一个本地的git仓库,它和远程仓库一致;有一个本地master分支;以及一个origin/master索引指向远程分支。我们可以在master分支上修改,origin/master不可被直接更改,它指向远程分支。

注意:虽然远程分支索引,例如origin/master,在一些命令中被表示指向本地对象,或者在一些图示中被表示为指向本地提交对象,但请注意它其实是一个指向远程分支的索引。

$ git log --oneline --decorate --graph --all
*   11f0f7a (HEAD -> master) merge iss1
|\  
| * d6801d6 change README.md in iss1
* | 63172f9 change README.md in master.
|/  
*   8425ef2 Merge branch 'testing'
|\  
| * 40a00ae add description of testing.md
| * dd4555e add testing.md
* | 1b63c87 add description of dev.md
|/  
* fd2e1cb add dev.md
* 57b75e6 (origin/master) Add GitHub description.
* beac1f4 make README.md more friendly.

上例中,虽然origin/master指向57b75e6提交,但它其实是指向远程分支的57b75e6提交,而master则确实是指向本地的11f0f7a提交。

推送到远程分支

查看一下分支状况:

$ git branch -v
* master 11f0f7a [ahead 8] merge iss1

我们本地的master分支已经比远程分支提前了8个提交了,现在怎么推送到远程分支呢?

使用git push命令:

$ git push origin master
Username for 'https://github.com': mwanggh
Password for 'https://mwanggh@github.com': 
Counting objects: 19, done.
Compressing objects: 100% (17/17), done.
Writing objects: 100% (19/19), 1.65 KiB | 0 bytes/s, done.
Total 19 (delta 9), reused 0 (delta 0)
remote: Resolving deltas: 100% (9/9), completed with 1 local object.
To https://github.com/mwanggh/myFirstGit.git
   57b75e6..11f0f7a  master -> master

如果本地分支跟踪且仅仅跟踪一个分支,只用git push即可。

git push的用法是:

git push [remote-repository-reference] [local-head-name]:[remote-head-name]

比如说要推送本地分支dev给远程gitserverfeature分支,可以使用下面的命令:

git push gitserver dev:feature

拉取与跟踪远程分支

现在远程分支有了一个更改,怎么样拉取到本地呢?使用git fetch命令:

$ git fetch origin
remote: Counting objects: 3, done.
remote: Compressing objects: 100% (3/3), done.
remote: Total 3 (delta 2), reused 0 (delta 0), pack-reused 0
Unpacking objects: 100% (3/3), done.
From https://github.com/mwanggh/myFirstGit
   11f0f7a..af05578  master     -> origin/master

上面的命令将origin中的更改拉取到本地,并且更新origin/master的指向;但是这个命令并不会新建一条本地分支,或者同已有的本地分支合并。

如果想要从已经拉取的远程分支中检出一条新分支以供自己工作,那么使用下面的命令:

$ git checkout -b new_master origin/master
Branch new_master set up to track remote branch master from origin.
Switched to a new branch 'new_master'

这样远程分支就会检出为本地的可供修改的new_master分支,并且指向与origin/master相同的本地提交对象;本地new_master被设置为跟踪远程origin/master分支。--track执行相同的操作:

$ git checkout --track origin/dev

上面的命令会将远程origin/dev分支检出为本地dev分支并设置跟踪。

在本例中我们想要将远程origin/master合并到master分支,使用git merge即可:

$ git merge origin/master 
Updating 11f0f7a..af05578
Fast-forward
 README.md | 2 ++
 1 file changed, 2 insertions(+)

如果一条分支已经跟踪了远程分支,只用git pull命令即可,它会抓取远程仓库并且执行合并操作。

删除远程分支

如果想要删除一条远程分支,使用下面的命令:

$ git push origin -- delete dev

这会删除远程分支dev(服务器上的远程分支,而不是远程分支索引)。

分支开发工作流

现实中怎样利用分支进行开发呢?

一些实践将master作为稳定的分支,另外有不稳定的dev等分支,dev等用来开发新的功能或者测试稳定性,等稳定性足够之后会被合并到master分支,所以master分支总是比其他分支要慢。

一些实践大量用到特性分支,特性分支是为了实现单一特性、修复单一bug或类似的事情而存在的,完成了之后就被合并入其他分支。

上一篇下一篇

猜你喜欢

热点阅读