1. 程式人生 > >git 拉取和獲取 pull 和 fetch 區別

git 拉取和獲取 pull 和 fetch 區別

使用git  直接提交的話   直接 push

獲取最新版本  有兩種  拉取 和 獲取 pull 和 fetch

git  pull     從遠端拉取最新版本 到本地  自動合併 merge            git pull origin master

git  fetch   從遠端獲取最新版本 到本地   不會自動合併 merge    git fetch  origin master       git log  -p master ../origin/master     git merge orgin/master

實際使用中  使用git fetch 更安全    在merge之前可以看清楚 更新情況  再決定是否合併

原文轉載自  http://www.tech126.com/git-fetch-pull/