I'd like to be able to do this:
git cherry-pick --interactive hash-0..hash-n-1 # fantasy command
and obtain the same workflow as interactive rebase: an editor buffer comes up, containing:
pick hash-0
pick hash-1
pick hash-2
...
pick hash-n-1
where I can delete any unwanted commits, squash them together, or edit to pause between the picks to do some manual fixup (like commit --amend) and all that.
Note how the pick of interactive rebase is tanalizingly like cherry-pick.
Now the above operation can be done by performing the cherry-pick first, and then the interactive rebase, which is inconvenient. That is:
$ git tag old-head # mark starting point for later rebase
$ git cherry-pick hash-0..hash-n-1 # get everything first
$ git rebase --interactive old-head # okay now rebase "in-branch" to fix it up
It's not only inconvenient because of the two steps but because it may require resolving conflicts in commits you don't even want that will be discarded in the rebase stage.
git rebase --ontoexactly that?hash-0..hash-n-1, or are you looking for an answer that generalizes to arbitrary commits that aren't necessarily ancestors/descendants of each other?