Skip to content

Latest commit

 

History

History
14 lines (6 loc) · 635 Bytes

File metadata and controls

14 lines (6 loc) · 635 Bytes

1.git pullgit fetch 的区别?

参考链接

1.概括的讲 git pull = git fetch + git merge

git pull 会将本地库更新至远程库的最新状态 由于本地库进行了更新,HEAD 也会相应的指向最新的commit id

2.git fetch 的时候只是将 remoteorigin 进行 update 但是并没有在 localbranch 进行 merge