为了账号安全,请及时绑定邮箱和手机立即绑定

Git fetch和git pull的区别

Git fetch和git pull的区别

Git
Qyouu 2019-02-19 19:12:11
Git fetch和git pull的区别
查看完整描述

2 回答

?
ibeautiful

TA贡献1993条经验 获得超5个赞

每一个本地库下都有一个.git的隐藏文件夹,文件夹中的文件保存着跟这个本地库相关的信息
首先来看下其中的config文件
[plain] view plain copy
[core]
repositoryformatversion = 0
filemode = false
bare = false
logallrefupdates = true
symlinks = false
ignorecase = true
hideDotFiles = dotGitOnly
[remote "origin"]
url = git@github.com:seanzou88/fetch.git
fetch = +refs/heads/*:refs/remotes/origin/*
[branch "master"]
remote = origin
merge = refs/heads/master
从这个文件中我们可以了解到:
1,本地库的当前分支为master,其关联的远程库名称为origin(不同的名称可以指向同一个远程库,参见git remote命令)
2,远程库origin所在的位置为(URL):git@github.com:seanzou88/fetch.git
然后可以查看.git文件夹下的HEAD文件:
[plain] view plain copy
ref: refs/heads/master
其指向.git\refs\heads\master文件
[plain] view plain copy
ce71505b3626a3648b2c32ea2081d65049cad300
这个文件中保存的是本地库中最新的commit id
.git\refs文件夹很有意思,面分为3个文件夹
heads文件夹前面说过了
remotes文件夹中的每一个文件夹代表一个远程库名称(git remote),其中的每个文件关联远程库的一个分支,其中保存该分支的最新commit id
.git\logs文件夹下保存的是.git\refs文件夹下相应文件的变更记录
准备工作到此结束,下面可以具体看看git fetch和git pull之间的区别了

git fetch origin
本地的latest commit id为:ce71505b3626a3648b2c32ea2081d65049cad300
githup上的latest commit id为:ab8cd391f978fe5384a78c92001ef8ae861046f0
before:
.git\refs\heads\master
[plain] view plain copy
ce71505b3626a3648b2c32ea2081d65049cad300
.git\refs\remotes\origin\master
[plain] view plain copy
ce71505b3626a3648b2c32ea2081d65049cad300
.git\logs\refs\heads\master
[plain] view plain copy
0000000000000000000000000000000000000000
ce71505b3626a3648b2c32ea2081d65049cad300
......
commit (initial): first commit
.git\logs\refs\remotes\origin\master
[plain] view plain copy
0000000000000000000000000000000000000000
ce71505b3626a3648b2c32ea2081d65049cad300
......
update by push
after:
.git\refs\heads\master(不变)
.git\refs\remotes\origin\master
[plain] view plain copy
ab8cd391f978fe5384a78c92001ef8ae861046f0
.git\logs\refs\heads\master(不变)
.git\logs\refs\remotes\origin\master
[plain] view plain copy
0000000000000000000000000000000000000000
ce71505b3626a3648b2c32ea2081d65049cad300
......
update by push
ce71505b3626a3648b2c32ea2081d65049cad300
ab8cd391f978fe5384a78c92001ef8ae861046f0
......
fetch origin: fast-forward
本地库并没有变化,也就是说,git fetch只会将本地库所关联的远程库的commit id更新至最新
HEAD没有变化很容易理解,因为本地库并没有变化

git pull origin master:master
本地的latest commit id为:3643a1a65fc88ae0e9f28f12168629758d027415
githup上的latest commit id为:64df093f73294d82a3adce9694871b9fac2aecfb
before:
.git\refs\heads\master
[plain] view plain copy
3643a1a65fc88ae0e9f28f12168629758d027415
.git\refs\remotes\origin\master
[plain] view plain copy
3643a1a65fc88ae0e9f28f12168629758d027415
.git\logs\refs\heads\master
[plain] view plain copy
0000000000000000000000000000000000000000
3643a1a65fc88ae0e9f28f12168629758d027415
......
commit (initial): first commit
.git\logs\refs\remotes\origin\master
[plain] view plain copy
0000000000000000000000000000000000000000
3643a1a65fc88ae0e9f28f12168629758d027415
......
update by push
after:
.git\refs\heads\master
[plain] view plain copy
64df093f73294d82a3adce9694871b9fac2aecfb
.git\refs\remotes\origin\master(不变)
.git\logs\refs\heads\master
[plain] view plain copy
0000000000000000000000000000000000000000
3643a1a65fc88ae0e9f28f12168629758d027415
......
commit (initial): first commit
3643a1a65fc88ae0e9f28f12168629758d027415
64df093f73294d82a3adce9694871b9fac2aecfb
......
pull origin master:master: fast-forward
.git\logs\refs\remotes\origin\master(不变)
本地库更新至最新,git pull会将本地库更新至远程库的最新状态
由于本地库进行了更新,HEAD也会相应的指向最新的commit id
所以虽然从结果上来看,git pull = git fetch + git merge,但是从文件中保存的commit id来看,实现上不是这样实现的



查看完整回答
反对 回复 2019-03-02
?
繁星点点滴滴

TA贡献1803条经验 获得超3个赞

Git中从远程的分支获取最新的版本到本地有这样2个命令:
1. git fetch:相当于是从远程获取最新版本到本地,不会自动merge

git fetch origin master
git log -p master..origin/master
git merge origin/master
以上命令的含义:
首先从远程的origin的master主分支下载最新的版本到origin/master分支上
然后比较本地的master分支和origin/master分支的差别
最后进行合并
上述过程其实可以用以下更清晰的方式来进行:

git fetch origin master:tmp
git diff tmp
git merge tmp
从远程获取最新的版本到本地的test分支上
之后再进行比较合并
2. git pull:相当于是从远程获取最新版本并merge到本地

git pull origin master

上述命令其实相当于git fetch 和 git merge
在实际使用中,git fetch更安全一些
因为在merge前,我们可以查看更新情况,然后再决定是否合并


查看完整回答
反对 回复 2019-03-02
  • 2 回答
  • 0 关注
  • 726 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信