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.
我永远不明白屏幕上的变化输出,有人可以给我以下虚拟术语中跟随变化的含义吗
**Fast-forward build.number | 4 ++--**
看来您build.number在 git 存储库中调用了文件,并且其他人已在上游更改了该文件。
build.number
快进意味着当您运行git pull以获取更改时,您的树没有受到影响-您没有自己进行任何提交,因此 git pull 能够更新您的存储库而无需进行任何合并。它只是将您的本地分支指针设置为与服务器上的完全相同 - 这正是快进的意思。
git pull