git pull:相当于是从远程获取最新版本并merge到本地 git fetch:相当于是从远程获取最新版本到本地,不会自动merge 简单来说,git pull 是 git fetch + git merge。