赞
踩
要同步在GitHub上fork的别人的仓库的更新,可以按照以下步骤进行操作:
git remote add upstream https://github.com/original-user/original-repo.git
git fetch upstream
git checkout master # 切换到你的主分支,如果不是master分支,请将其替换为你的主分支名称
git merge upstream/master # 将上游仓库的更新合并到你的主分支
或者,如果你更喜欢使用rebase来保持提交历史的整洁:
git checkout master
git rebase upstream/master
git push origin master # 如果不是master分支,请将其替换为你的主分支名称
支付宝这一次力度够大的啊,后台看到有人居然领了 20 元,你也来试试
现在,你的GitHub仓库应该与原始仓库保持同步了。重复上述步骤,以后都可以保持同步。
记住,定期拉取上游仓库的更新是很有必要的,这样你的代码库将与原始仓库保持最新。
如果帮助到你,打赏就不必了,领个现金红包再走吧~
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。