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.
如果我在存储库后面,我应该在 Windows 中使用什么命令来学习?
只需键入
git status
它会告诉你有多少次提交:
对于“落后”,你必须这样做
git fetch
然后是git status:
首先,您必须从存储库中获取新的引用:
git fetch <remote> <branch>
然后使用
会告诉你你落后了多少次提交。