亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

Git fetch和git pull的區別

Git fetch和git pull的區別

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

2 回答

?
ibeautiful

TA貢獻1993條經驗 獲得超6個贊

每一個本地庫下都有一個.git的隱藏文件夾,文件夾中的文件保存著跟這個本地庫相關的信息
首先來看下其中的config文件
[plain] view plain copy
[core]
repositoryformatversion = 0
filemode = false
bare = false
logallrefupdates = true
symlinks = false
ignorecase = true
hideDotFiles = dotGitOnly
[remote "origin"]
url = [email protected]: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):[email protected]: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 關注
  • 806 瀏覽

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯系客服咨詢優惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號