Reputation: 596
How do I combine
https://github.com/jidanni/gdal/tree/patch-57
https://github.com/jidanni/gdal/tree/patch-58
https://github.com/jidanni/gdal/tree/patch-60
into a single pull request to https://github.com/OSGeo/gdal ?
These three patches contain a total of four commits.
I am asking how to do this with just a browser and the GitHub website. I am not asking how to do it with the git shell command.
I could easily just submit three pull requests, but that would annoy the owners.
Upvotes: -1
Views: 37
Reputation: 7130
From GitHub, you could:
final-patch
from the branch patch-57
patch-58
into final-patch
with a PR in your fork.patch-60
into final-patch
with a PR in your fork.final-patch
to the original repo gdal
.Upvotes: 1