问题描述
您必须将原始存储库(您分叉的存储库)添加为远程。
克隆完成后,您的 repo 将有一个名为“”的遥控器
origin
,它指向您在 GitHub 上的 fork。 不要让这个名字混淆你,这并不指向你分叉的原始回购。为了帮助您跟踪该存储库,我们将添加另一个名为“涡流”的遥控器:$ cd PROJECT_NAME $ git remote add upstream
https://github.com/ORIGINAL_OWNER/ORIGINAL_REPOSITORY.git $ git fetch upstream
# then: (like "git pull" which is fetch + merge) $ git merge upstream/master master # or, better, replay your local work on top of the fetched branch # like a "git pull --rebase" $ git rebase upstream/master
这是它如何工作的视觉效果:
解决方法
我在 GitHub 上分叉了某人的存储库,并希望使用在原始存储库中进行的提交和更新来更新我的版本。这些是在我分叉我的副本之后制作的。
如何提取在源中所做的更改并将它们合并到我的存储库中?