Is there a way to have transplant a single changeset without commiting? I'd like to be able to review the changes prior to doing a commit.
hg transplant
always results in a new changeset in your repository.
However, you could:
hg export
and hg import --no-commit
instead ORhg transplant
and then hg strip
if you don't like the changeset