我将一个存储库作为R分叉。然后我对R1做了一些更改。
b将存储库“分叉”为“分叉”,“分叉”成为主要维护的存储库。
现在,我想将请求发送到R1,如何操作?
如果我想保持我的R更新为R2

最佳答案

要向R2发送拉请求,您可以单击Pull Request上的R1(您自己的fork)页面,然后选择Edit并选择R2部分中的base fork存储库。
要从R2中提取更新并将其推送到您的R1存储库,您可以像这样为R2添加新的远程:

git remote add r2 git://github.com/<path-to-r2-on-github>.git

然后您可以将更改从r2/master拉到本地的master如下:
git checkout master # checkout your local master
git pull r2 master  # pull changes from master branch of r2 remote repository

然后将它们推到您的R1(我假设您已将R1配置为origin远程):
git push origin master # push changes (that you previously pulled from r2)
                       # from local master to master in R1 repository

关于git - 如何从我的fork向另一个fork发送pull请求?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8613807/

10-13 05:43