【轉載】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/

Leave a Reply

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *

You may use these HTML tags and attributes:

<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>