chdyiboke / weekly

issue and share weekly
5 stars 1 forks source link

git fetch 和 git pull区别 #47

Open chdyiboke opened 3 years ago

chdyiboke commented 3 years ago

git fetch是将远程主机的最新内容拉到本地,用户在检查了以后决定是否合并到工作本机分支中。 git pull = git fetch + git merge,这样可能会产生冲突,需要手动解决。

fetch:拉取。