Skip to content

Latest commit

 

History

History
8 lines (3 loc) · 207 Bytes

git1.md

File metadata and controls

8 lines (3 loc) · 207 Bytes

git pull:相当于是从远程获取最新版本并merge到本地

git fetch:相当于是从远程获取最新版本到本地,不会自动merge

简单来说,git pull 是 git fetch + git merge。