码迷,mamicode.com
首页 > 其他好文 > 详细

git fetch

时间:2017-02-27 00:58:24      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:git pull   fetch   rem   etc   3.2   git fetch   使用   remote   3.1   

1 git fetch

git fetch就是把远程分支的最新的版本拉到本地的cache中,但是并不同本地的任何分支合并。要合并的话,还要人工git merge一下。

merge之前需要比较一下两个分支,不是随便就merge的。merge两个分支的时候有很多要注意的地方。

2 git pull

git pull的话,是先git fetch,然后再git merge。

3 git fetch的使用

3.1 fetch远程仓库的所有分支

git fetch <remote>

3.2 fetch远程仓库的某个分支

git fetch <remote> <rbranch>

 

git fetch

标签:git pull   fetch   rem   etc   3.2   git fetch   使用   remote   3.1   

原文地址:http://www.cnblogs.com/hustdc/p/6464108.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!