Well, I did not find a better way to name my question. Explaining the scenario is easier. But remember this is a Github question , not a Prototype-JS question (please don't add a tag for me)
Scenario
I am working on a Prototype based web application. I found that 1.7.1 (no fault to the author) has several errors that annoy us. All of these errors have, fortunately for us, a publicly available fix through a transfer request that has been accepted into the lead branch.
My boss and I discussed the choice between Prototype 1.7.1 patches for every incompatibility we find, and we agreed that using “development” in a fast production application is not the best choice, so our idea is to fix our version of Prototype.
I am responsible for this. Since I want to track the changes that my company applies to Prototype (even if I'm the only one who touches the JS file), I want to do this in an efficient way that can be left to the offspring.
Github allows you to plug any project into your workspace so you can play with it as much as you want. I would like to track the patches that I import into Prototype, actually linking them to the existing pull requests made in the original project.
General question
Given the general open source project on Github that I forked, is there any way to find the transfer request sent to the source branch and choose to “import” it into my own fork (given that the files must be diff-compatible) so that it applied to my branch?
Of course, this allows me to track over time the records (with comments and discussions) about what PRs that I chose to import in my branch and which not.
source share