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.
我在不同的PC上使用guthub。克隆同一个存储库,我在一台 PC 上修改了代码并提交了更改。但是当我打开另一台电脑时,它会提醒我我落后于 1 次提交。如何处理这个问题?
您需要更新另一台 PC 上的本地 git 存储库。
想必你已经完成了:
git fetch
提取最新的更改。现在您需要将本地分支与远程分支合并:
git merge origin/master
(或您落后的任何分支名称)
也可能你开始使用旧的克隆并在那里做了一个小的提交,只需做一个 Git 拉动就可以解决它。