git 的fetch和pull的區別

2021-07-16 19:54:53 字數 513 閱讀 7615

git中從遠端的分支獲取最新的版本到本地有這樣2個命令:

1. git fetch:相當於是從遠端獲取最新版本到本地,不會自動merge

git fetch origin master

git log -p master..origin/master

git merge 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前,我們可以檢視更新情況,然後再決定是否合併

Git中pull對比fetch和merge

使用git fetch和git pull都可以更新遠端倉庫的 到本地,但是它們之間還是有區別。今天搜了一下git pull和fetch,發現資訊量很大,牽扯到git中很多概念,以我這種智商估計要完全理解很困難,所以先宣告一下,下面的內容是我綜合了網上的資料後,自己的理解,如有誤導,敬請諒解。首先,我...

git 刪除非當前分支,fetch 和 pull

git 賬號密碼錯誤 git config system unset credential.helpergit 刪除非當前分支 git branch d git在本地會儲存兩個版本的倉庫,分為本地倉庫和遠端倉庫。1 本地倉庫就是我們平時 add commit 的那個倉庫。2 遠端倉庫可以用git r...

iOS Git中的fetch和pull的區別

git中從遠端的分支獲取最新的版本到本地有這樣2個命令 1.git fetch 相當於是從遠端獲取最新版本到本地,不會自動merge git fetch origin master git log p master.origin master git merge origin master 上述過程...