課程
/前端開(kāi)發(fā)
/前端工具
/全方位入門(mén)git
看老師拉代碼都用git fetch,想知道兩者具體有啥區(qū)別嗎
2021-08-29
源自:全方位入門(mén)git 5-3
正在回答
git pull是git fetch后跟git merge FETCH_HEAD的縮寫(xiě)。
git pull
git fetch
git merge FETCH_HEAD
更準(zhǔn)確地說(shuō),git pull使用給定的參數(shù)運(yùn)行git fetch,并調(diào)用git merge將檢索到的分支頭合并到當(dāng)前分支中。 使用--rebase,它運(yùn)行git rebase而不是git merge。
git merge
--rebase
git rebase
舉報(bào)
通過(guò)git基本命令以及git與github的拓展來(lái)全方位入門(mén)git。
7 回答git rebase 和 git merge的區(qū)別是什么
1 回答git config --add --local user.name和git config --global user.name
1 回答與git branch -d [dev] 刪除分支有什么區(qū)別
3 回答git commit
1 回答Git for Windows Portable
Copyright ? 2025 imooc.com All Rights Reserved | 京ICP備12003892號(hào)-11 京公網(wǎng)安備11010802030151號(hào)
購(gòu)課補(bǔ)貼聯(lián)系客服咨詢(xún)優(yōu)惠詳情
慕課網(wǎng)APP您的移動(dòng)學(xué)習(xí)伙伴
掃描二維碼關(guān)注慕課網(wǎng)微信公眾號(hào)
2022-06-26
git pull
是git fetch
后跟git merge FETCH_HEAD
的縮寫(xiě)。更準(zhǔn)確地說(shuō),
git pull
使用給定的參數(shù)運(yùn)行git fetch
,并調(diào)用git merge
將檢索到的分支頭合并到當(dāng)前分支中。 使用--rebase
,它運(yùn)行git rebase
而不是git merge
。