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 repo 离线副本,一段时间后其他人可能对其进行了更改。如何让我的存储库跟上新的变化?如何检查我的仓库是否处于最新更新状态?
git pull将提取最新的更改。
git pull
git fetch将更新更改列表。 git status将检查回购的状态。如果没有先获取,您将看不到远程更改。
git fetch
git status
另外,请阅读文档。