美文网首页
2020-02-08 github fork的仓库如何合并原来仓

2020-02-08 github fork的仓库如何合并原来仓

作者: KingAmo | 来源:发表于2020-02-08 11:25 被阅读0次

有时候有这样的需求:你使用的github的第三方仓库,有新的PR,解决了一些问题,仓库的作者没有来得及合并这个PR,但是你又想使用这个PR,该怎么办呢?

solution

1、fork一份原仓库到你的仓库
2、clone 你的fork到你本地
3、本地的仓库添加原仓库的地址为remote :

 git remote add otherfork https://github.com/originRepo/project.git

4、执行git fetch otherfork
5、找到原仓库的PR分支的名字,执行

git rebase master otherfork/pullrequest-branch

合并成功!

参考

https://stackoverflow.com/questions/6022302/how-to-apply-unmerged-upstream-pull-requests-from-other-forks-into-my-fork

相关文章

网友评论

      本文标题:2020-02-08 github fork的仓库如何合并原来仓

      本文链接:https://www.haomeiwen.com/subject/cetixhtx.html