Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Transplant into workspace without commiting

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.

like image 642
Robert Jeppesen Avatar asked Nov 09 '10 14:11

Robert Jeppesen


1 Answers

hg transplant always results in a new changeset in your repository.

However, you could:

  1. Use hg export and hg import --no-commit instead OR
  2. Use hg transplant and then hg strip if you don't like the changeset
like image 84
Tim Henigan Avatar answered Nov 06 '22 01:11

Tim Henigan