(This seems like it should be very easy to do, yet I\'m coming up empty on searches so far.)
I have a body of code from an upstream source, with various version
You would use the following command:
git rebase --onto v1.5 v1.0 develop
The develop part of the command must be a branch, but the other two can be whatever you want.
develop