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.
在 github 上,如果我 fork 一个项目,如何从我 fork 的原始项目中提取最新的?
我实际上是在创建分叉项目的副本,我假设这是一个手动过程,每次分叉项目发生变化时我都必须这样做,对吗?
我将以Symfony 2 存储库为例。 假设你已经分叉了它:
git remote add upstream git://github.com/symfony/symfony.git git fetch upstream git merge upstream/master