在Help.github 的 Forking a project的Pulling in upstream changes部分中,它指出:
一段时间过去了,上游 repo 发生了变化,你想在提交新补丁之前更新你的 fork。有两种方法可以做到这一点:
$ git fetch upstream master
$ git merge upstream/master
为什么它们包含master
在 fetch 命令中?我查看了git help fetch
信息,但我不明白 include的master
作用。谢谢。