Option to choose repository where to edit the current file #2815
jack1142 posted onGitHub
Currently if I'm editing something on my fork through the edit view and I'll choose to create a new branch and start a pull request, GitHub will redirect me to "Open a pull request" page on the fork I used, not at the repository I forked. While this makes sense, I think it would be great if I were also able to choose different base repository.
Example URL:
https://github.com/jack1142/refined-github/new/master
Where jack1142/refined-github
is someone's fork you have write access to.
Draft of what I mean (by no means should it be styled like this, but I'm not a web designer :P)
When I was doing some checking, it looks like this would be possible to solve by editing value of hidden input field with name="quick_pull"
that is placed in the form I sent a screenshot of above. For example, if the value of it is master
, changing it to sindresorhus:master
is gonna make it redirect me to "Open a pull request" page for sindresorhus/refined-github
repository instead.