I forked a repository R as R1. Then I make some changes to R1.
B forked the repository R as R2, and R2 becomes the mainly maintained repository.
Now I want to send pull request to R2, how to do?
And what if I want to keep my R1 updated with R2?
To send pull request to
R2you can clickPull RequestonR1(your own fork) page, thenEditand chooseR2repository inbase forksection.To pull updates from
R2and push them to yourR1repository you can add new remote forR2like that:Then you can pull changes from
r2/masterto your localmasterlike that:And then push them to your
R1(I assume you haveR1configured asoriginremote):