所以 - 有人可以澄清这一点:
我跑:
git pull origin master
git status
然后它会拉出更改并说:
your branch is ahead of origin/master ... blahblah by 6 commits...
当我然后跑
git fetch
git status
它说:
# On branch master
nothing to commit (working directory clean)
所以 - 我认为git pull
默认情况下 git fetch - 那么为什么它说“提前 6 次提交”而没有额外的git fetch
?