Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在拉取其他开发人员提交和推送的更改之后git pull,我是否需要运行git checkout或其他方式让我的本地工作副本与所有文件的最新版本“完全同步”?
git pull
git checkout
No. git pull执行 a git fetch--使用来自远程存储库的更改更新您的本地存储库 -- 和git merge,它更新您的本地工作副本(签出文件)。
git fetch
git merge
操作后git pull,您的工作副本应该完全同步,除非您进行任何本地修改。