Git将现有的repo推送到一个新的不同的远程repo服务器?假设我在git.fedorahosted.org上有一个存储库,我想将它克隆到我在github的帐户中,除了fedorahosted上更“官方”的回购之外,还有我自己的游乐场。最初复制它的步骤是什么?在github中有一个很好的“fork”按钮,但由于显而易见的原因,我无法使用它。我如何跟踪fedorahosted repo中的变化到github one?
3 回答
开满天机
TA贡献1786条经验 获得超12个赞
在github上创建一个新的repo。
将repora从fedorahosted克隆到您的本地计算机。
git remote rename origin upstream
git remote add origin URL_TO_GITHUB_REPO
git push origin master
现在你可以像任何其他github repo一样使用它。要从上游提取补丁,只需运行即可git pull upstream master && git push origin master
。
- 3 回答
- 0 关注
- 586 浏览
添加回答
举报
0/150
提交
取消